Skip to content

Commit

Permalink
Merge pull request #5263 from maron2000/fixmenu
Browse files Browse the repository at this point in the history
Change order of menubar to cope with inaccessible items due to overlapped menus
  • Loading branch information
joncampbell123 authored Nov 1, 2024
2 parents 103c276 + cd0a5dd commit 2d94a7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ static const char *def_menu__toplevel[] =
"VideoMenu",
"SoundMenu",
"DOSMenu",
"DriveMenu",
#if !defined(C_EMSCRIPTEN)
"CaptureMenu",
#endif
"DriveMenu",
#if C_DEBUG
"DebugMenu",
#endif
Expand Down Expand Up @@ -709,9 +709,9 @@ static const char *def_menu_capture[] =
"mapper_capnetrf",
"--",
#endif
"saveoptionmenu",
"mapper_savestate",
"mapper_loadstate",
"saveoptionmenu",
"saveslotmenu",
"autosavecfg",
"browsesavefile",
Expand Down Expand Up @@ -860,7 +860,7 @@ static const char* def_menu_help_debug[] =
static const char *def_menu_help[] =
{
"help_intro",
"HelpCommandMenu",
"help_about",
#if !defined(HX_DOS)
"--",
"help_homepage",
Expand All @@ -880,7 +880,7 @@ static const char *def_menu_help[] =
#if C_PCAP || C_PRINTER && defined(WIN32) || !C_DEBUG && !defined(MACOSX) && !defined(LINUX) && !defined(HX_DOS) && !defined(C_EMSCRIPTEN)
"--",
#endif
"help_about",
"HelpCommandMenu",
NULL
};

Expand Down

0 comments on commit 2d94a7f

Please sign in to comment.