Previous 199869 Revisions Next

r29574 Saturday 12th April, 2014 at 17:21:38 UTC by Nathan Woods
Swallowing shortcut keys the first time the menu comes up; now ESC in the F4 menu won't break out
[/branches/new_menus/src/emu/ui]menubar.c menubar.h

branches/new_menus/src/emu/ui/menubar.c
r29573r29574
6565   m_mouse_y = -1;
6666   m_mouse_button = false;
6767   m_last_mouse_move = 0;
68   m_first_time = true;
6869}
6970
7071
r29573r29574
239240   if (!done)
240241   {
241242      bool navigation_input_pressed = poll_navigation_keys();
242      poll_shortcut_keys(navigation_input_pressed);
243      poll_shortcut_keys(navigation_input_pressed || m_first_time);
244      m_first_time = false;
243245      done = true;
244246   }
245247   return done;
branches/new_menus/src/emu/ui/menubar.h
r29573r29574
226226   float               m_checkmark_width;
227227   osd_ticks_t            m_last_mouse_move;
228228   menubar_visibility_t   m_menubar_visibility;
229   bool               m_first_time;
229230
230231   // selection walking
231232   bool walk_selection_previous();

Previous 199869 Revisions Next


© 1997-2024 The MAME Team