Skip to content

Commit

Permalink
Change gui_always_on_top to true, by default (fixes #1351)
Browse files Browse the repository at this point in the history
Set the GUI to be always on top by default.
This should help with cases where we are in Full screen mode, and sometimes the GUI opens behind the emulation screen.
  • Loading branch information
midwan committed Jun 11, 2024
1 parent d97815d commit 26a2aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdep/amiberry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2155,7 +2155,7 @@ void target_default_options(struct uae_prefs* p, int type)
//p->notaskbarbutton = false;
//p->nonotificationicon = false;
p->main_alwaysontop = false;
p->gui_alwaysontop = false;
p->gui_alwaysontop = true;
//p->guikey = -1;
p->automount_removable = false;
//p->automount_drives = 0;
Expand Down

0 comments on commit 26a2aa8

Please sign in to comment.