Stick window on current view

menu item for media player and output preview to pin the window in current view
This commit is contained in:
Bruno
2021-06-07 00:04:06 +02:00
parent 7dcfc97f33
commit a403d40b6c
3 changed files with 62 additions and 36 deletions

View File

@@ -18,12 +18,13 @@ struct WidgetsConfig
int stats_mode;
bool logs;
bool preview;
bool history;
int preview_view;
bool media_player;
bool media_player_listview;
int media_player_view;
bool timeline_editmode;
bool shader_editor;
bool toolbox;
bool history;
WidgetsConfig() {
stats = false;
@@ -31,9 +32,10 @@ struct WidgetsConfig
stats_corner = 1;
logs = false;
preview = false;
preview_view = -1;
history = false;
media_player = false;
media_player_listview = false;
media_player_view = -1;
timeline_editmode = false;
shader_editor = false;
toolbox = false;