diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-20 14:35:18 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-03-20 14:35:18 +0000 |
| commit | 4e965380bc872a5da745d64a5d9deb901fa2979c (patch) | |
| tree | 5ef32ff39f7dc9fb50476c1623c131bc9c64599d /fluid/fluid.cxx | |
| parent | a4786598bbb997fd0909a1113d70e53777ddaeb8 (diff) | |
Use uppercase letters for shortcut labels (e.g. "Ctrl+N", not
"Ctrl+n") to be consistent with other toolkits.
Remove debug printf from undo_checkpoint().
Change "Show Widget Panel" to "Show Properties" since it displays any
Fl_Type dialog, not just the widget panel.
Add "properties" to all of the type dialogs (UI consistency)
Remove extra elipsis (...) from code items in the new menu.
Revert Grid shortcut to Ctrl+G, since Alt+G is used to run a shell
command again.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4146 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/fluid.cxx')
| -rw-r--r-- | fluid/fluid.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index 436649ebf..6cd47e5df 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -631,12 +631,12 @@ Fl_Menu_Item Main_Menu[] = { {"&Redo", FL_CTRL+FL_SHIFT+'z', redo_cb, 0, FL_MENU_DIVIDER}, {"C&ut", FL_CTRL+'x', cut_cb}, {"&Copy", FL_CTRL+'c', copy_cb}, - {"&Delete", FL_Delete, delete_cb}, - {"Dup&licate", FL_CTRL+'d', duplicate_cb}, {"&Paste", FL_CTRL+'v', paste_cb}, + {"Dup&licate", FL_CTRL+'u', duplicate_cb}, + {"&Delete", FL_Delete, delete_cb, 0, FL_MENU_DIVIDER}, {"Select &All", FL_CTRL+'a', select_all_cb}, {"Select &None", FL_CTRL+FL_SHIFT+'a', select_none_cb, 0, FL_MENU_DIVIDER}, - {"&Show Widget Panel...", FL_F+1, openwidget_cb}, + {"Pr&operties...", FL_F+1, openwidget_cb}, {"&Sort",0,sort_cb}, {"&Earlier", FL_F+2, earlier_cb}, {"&Later", FL_F+3, later_cb}, @@ -675,7 +675,7 @@ Fl_Menu_Item Main_Menu[] = { {"&Small",FL_ALT+'2',(Fl_Callback *)widget_size_cb,(void*)11,FL_MENU_RADIO,FL_NORMAL_LABEL,FL_HELVETICA,11}, {"&Normal",FL_ALT+'3',(Fl_Callback *)widget_size_cb,(void*)14,FL_MENU_RADIO|FL_MENU_VALUE}, {0}, - {"&Grid...",FL_ALT+'g',show_grid_cb}, + {"&Grid...",FL_CTRL+'g',show_grid_cb}, {0}, {"&Shell",0,0,0,FL_SUBMENU}, {"Execute &Command...",FL_ALT+'x',(Fl_Callback *)show_shell_window}, |
