From 54e4698b9c7d93e03e42b53055dd2f08a186b291 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 10 Feb 2012 07:45:00 +0000 Subject: [PATCH] for ruth: g/m/s/p shortcuts now focus the menu window --- Fltk/FlGui.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Fltk/FlGui.cpp b/Fltk/FlGui.cpp index c9043901af..edc7f8fdf8 100644 --- a/Fltk/FlGui.cpp +++ b/Fltk/FlGui.cpp @@ -392,18 +392,22 @@ int FlGui::testGlobalShortcuts(int event) } else if(Fl::test_shortcut('g')) { mod_geometry_cb(0, 0); + Fl::focus(menu->scroll); status = 1; } else if(Fl::test_shortcut('m')) { mod_mesh_cb(0, 0); + Fl::focus(menu->scroll); status = 1; } else if(Fl::test_shortcut('s')) { mod_solver_cb(0, 0); + Fl::focus(menu->scroll); status = 1; } else if(Fl::test_shortcut('p')) { mod_post_cb(0, 0); + Fl::focus(menu->scroll); status = 1; } else if(Fl::test_shortcut('<')) { -- GitLab