From 9b845359a6b9b5d797ae4f6d6fc4628ab76f088f Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 17 Feb 2015 15:15:55 +0100 Subject: 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. --- source/blender/editors/space_file/space_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors') 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; -- cgit v1.2.3