Changeset 460
- Timestamp:
- 03/05/2008 02:33:47 (6 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
lib/shoes/help.rb (modified) (1 diff)
-
shoes/app.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/shoes/help.rb
r440 r460 106 106 end 107 107 end 108 image " static/shoes-icon.png", :top => 8, :right => 10 + gutter,108 image "#{DIR}/static/shoes-icon.png", :top => 8, :right => 10 + gutter, 109 109 :width => 64, :height => 64 110 110 end -
trunk/shoes/app.c
r459 r460 1132 1132 KEYPRESS(F11, f11) 1133 1133 KEYPRESS(F12, f12) 1134 else if ( w >= 'A' && w <= 'Z') {1134 else if ((w >= 'A' && w <= 'Z') || w == 191) { 1135 1135 VALUE v; 1136 char letter = w + 32; 1136 char letter = w; 1137 if (w == 191) 1138 { 1139 if (app->os.shiftkey) 1140 letter = '?'; 1141 else 1142 letter = '/'; 1143 } 1144 else 1145 { 1146 if (!app->os.shiftkey) 1147 letter += 32; 1148 } 1137 1149 v = rb_str_new(&letter, 1); 1138 1150 if (app->os.altkey) {
