Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-02-17 17:15:55 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-17 17:18:02 +0300
commit9b845359a6b9b5d797ae4f6d6fc4628ab76f088f (patch)
tree4639d0bc9ccc28be8c8e57b2b116cd244e371700 /source/blender/editors/space_file/space_file.c
parent18e849b05d4954d318d8b2d77ad9e50cef6d0db9 (diff)
Quick fix/hack for too small 'operator' panel in filebrowser
Real issue is that temp area used to draw modal filebrowser is never saved, so non of UI 'edits' (like UIList resize, regions resize, panels reorder, etc.) are ever saved. Should be addressed, but no time for that currently.
Diffstat (limited to 'source/blender/editors/space_file/space_file.c')
-rw-r--r--source/blender/editors/space_file/space_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 4d41f24a3e3..782b318b8a2 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -659,7 +659,7 @@ void ED_spacetype_file(void)
art = MEM_callocN(sizeof(ARegionType), "spacetype file operator region");
art->regionid = RGN_TYPE_TOOL_PROPS;
art->prefsizex = 0;
- art->prefsizey = 240;
+ art->prefsizey = 360;
art->keymapflag = ED_KEYMAP_UI;
art->listener = file_tools_area_listener;
art->init = file_tools_area_init;