[Bf-blender-cvs] [b962aca8003] master: UI: Open file browser in fullscreen by default

Julian Eisel noreply at git.blender.org
Wed Sep 18 14:51:51 CEST 2019


Commit: b962aca8003de89683c87c4da348579f756b75cd
Author: Julian Eisel
Date:   Wed Sep 18 14:49:13 2019 +0200
Branches: master
https://developer.blender.org/rBb962aca8003de89683c87c4da348579f756b75cd

UI: Open file browser in fullscreen by default

Fullscreen as in, maximized area.

This may be a temporary change until we consider the temporary window
mode as working well enough.
Note that you can still enable the windowed mode in the Preferences
(Interface > Editors > Temporary Windows).

===================================================================

M	source/blender/blenloader/intern/versioning_userdef.c

===================================================================

diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c
index 75b87c4f1f0..367122e00b4 100644
--- a/source/blender/blenloader/intern/versioning_userdef.c
+++ b/source/blender/blenloader/intern/versioning_userdef.c
@@ -621,7 +621,7 @@ void BLO_version_defaults_userpref_blend(Main *bmain, UserDef *userdef)
   {
     /* pass */
     userdef->render_display_type = USER_RENDER_DISPLAY_WINDOW;
-    userdef->filebrowser_display_type = USER_TEMP_SPACE_DISPLAY_WINDOW;
+    userdef->filebrowser_display_type = USER_TEMP_SPACE_DISPLAY_FULLSCREEN;
   }
 
   if (userdef->pixelsize == 0.0f) {



More information about the Bf-blender-cvs mailing list