Commit 311180df authored by David Fuhrmann's avatar David Fuhrmann

macosx: do not start fullscreen when splitter is activated

This is a quick fix which need to be improved later (see todo).

close #9579
parent 7fb4e4b5
...@@ -155,7 +155,12 @@ ...@@ -155,7 +155,12 @@
// TODO: find a cleaner way for "start in fullscreen" // TODO: find a cleaner way for "start in fullscreen"
// Start in fs, because either prefs settings, or fullscreen button was pressed before // Start in fs, because either prefs settings, or fullscreen button was pressed before
if (var_InheritBool(VLCIntf, "fullscreen") || var_GetBool(pl_Get(VLCIntf), "fullscreen")) {
char *psz_splitter = var_GetString(pl_Get(VLCIntf), "video-splitter");
BOOL b_have_splitter = psz_splitter != NULL && *psz_splitter != '\0';
free(psz_splitter);
if (!b_have_splitter && (var_InheritBool(VLCIntf, "fullscreen") || var_GetBool(pl_Get(VLCIntf), "fullscreen"))) {
// this is not set when we start in fullscreen because of // this is not set when we start in fullscreen because of
// fullscreen settings in video prefs the second time // fullscreen settings in video prefs the second time
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment