[Pharo-project] Issue 3995 in pharo: alt+k when no window is open throws a debugger
Status: Accepted Owner: damien.c...@gmail.com Labels: Milestone-1.2.2 Type-ReportDefect Difficulty-Easy New issue 3995 by damien.c...@gmail.com: alt+k when no window is open throws a debugger http://code.google.com/p/pharo/issues/detail?id=3995 1- Download Pharo-1.2.1-OneClick 2- Open it 3- Close all open windows 4- press alt+k Debugger is coming
Updates: Status: FixProposed Comment #1 on issue 3995 by damien.c...@gmail.com: alt+k when no window is open throws a debugger http://code.google.com/p/pharo/issues/detail?id=3995 Ok, it looks like the World #commandKeySelectors property is not properly initialized: (World valueOfProperty: #commandKeySelectors) at: $k ==> MessageSend (#open -> nil) and sending #open to nil is likely to open the debugger :-). This can easily be fixed by executing the dedicated initialize method: World initializeDesktopCommandKeySelectors. (World valueOfProperty: #commandKeySelectors) at: $k ==> MessageSend(#open -> StringHolder)
Updates: Labels: Milestone-1.3 Comment #2 on issue 3995 by marcus.d...@gmail.com: alt+k when no window is open throws a debugger http://code.google.com/p/pharo/issues/detail?id=3995 in 12347 TODO: check 1.3
Updates: Status: Closed Comment #3 on issue 3995 by marcus.d...@gmail.com: alt+k when no window is open throws a debugger http://code.google.com/p/pharo/issues/detail?id=3995 in 13145
participants (1)
-
pharo@googlecode.com