Merge pull request #6481 from Thraka/showui

Add a shortcut key to toggle the UI when fullscreen
This commit is contained in:
Miran Grča
2025-11-18 08:40:23 +01:00
committed by GitHub
8 changed files with 48 additions and 6 deletions

View File

@@ -288,7 +288,7 @@ struct accelKey {
char desc[64];
char seq[64];
};
#define NUM_ACCELS 8
#define NUM_ACCELS 9
extern struct accelKey acc_keys[NUM_ACCELS];
extern struct accelKey def_acc_keys[NUM_ACCELS];
extern int FindAccelerator(const char *name);

View File

@@ -132,6 +132,7 @@ extern int update_icons;
extern int kbd_req_capture;
extern int hide_status_bar;
extern int hide_tool_bar;
extern int fullscreen_ui_visible;
/* System-related functions. */
extern FILE *plat_fopen(const char *path, const char *mode);