GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: a tiny graphical app kit for ruby
Homepage: http://code.whytheluckystiff.net/shoes
Clone URL: git://github.com/why/shoes.git
 * shoes/native/cocoa.m: Command+W now closes windows on MacOSX, added 
 Command+M to open Shoes Manual with one keystroke
ecarnevale (author)
Sat Jul 12 07:55:02 -0700 2008
why (committer)
Mon Jul 14 08:47:16 -0700 2008
commit  e83a61b0cc4c641ee9b93a8fd410dc3d414fcf13
tree    bab2a749ef03310e92d8c5910e97d59e15d2af04
parent  b5dbc788cb4d191fe9e74f1962688d407b16a3b0
...
444
445
446
 
 
447
448
449
...
463
464
465
466
 
467
468
469
...
444
445
446
447
448
449
450
451
...
465
466
467
 
468
469
470
471
0
@@ -444,6 +444,8 @@ create_window_menu(NSMenu *main)
0
 
0
     [menuWindows addItemWithTitle:@"Minimize"
0
         action:@selector(performMiniaturize:) keyEquivalent:@""];
0
+ [menuWindows addItemWithTitle:@"Close current Window"
0
+ action:@selector(performClose:) keyEquivalent:@"w"];
0
     [menuWindows addItem: [NSMenuItem separatorItem]];
0
     [menuWindows addItemWithTitle:@"Bring All to Front"
0
         action:@selector(arrangeInFront:) keyEquivalent:@""];
0
@@ -463,7 +465,7 @@ create_help_menu(NSMenu *main)
0
     [menuitem setTarget: shoes_world->os.events];
0
     [menuHelp addItem: [NSMenuItem separatorItem]];
0
     menuitem = [menuHelp addItemWithTitle:@"Manual"
0
- action:@selector(help:) keyEquivalent:@"?"];
0
+ action:@selector(help:) keyEquivalent:@"m"];
0
     [menuitem setTarget: shoes_world->os.events];
0
     add_to_menubar(main, menuHelp);
0
     [menuHelp release];

Comments

    No one has commented yet.