Issue 3995 in pharo: alt+k when no window is open throws a debugger

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 3995 in pharo: alt+k when no window is open throws a debugger

pharo
Status: Accepted
Owner: [hidden email]
Labels: Milestone-1.2.2 Type-ReportDefect Difficulty-Easy

New issue 3995 by [hidden email]: 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


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3995 in pharo: alt+k when no window is open throws a debugger

pharo
Updates:
        Status: FixProposed

Comment #1 on issue 3995 by [hidden email]: 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)


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3995 in pharo: alt+k when no window is open throws a debugger

pharo
Updates:
        Labels: Milestone-1.3

Comment #2 on issue 3995 by [hidden email]: 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


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3995 in pharo: alt+k when no window is open throws a debugger

pharo
Updates:
        Status: Closed

Comment #3 on issue 3995 by [hidden email]: alt+k when no window is  
open throws a debugger
http://code.google.com/p/pharo/issues/detail?id=3995

in 13145