From b05cf040cbce513095c1525c2f5c2d075743f57d Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 1 Jul 2015 21:48:42 +0200 Subject: Cleanup: Use bool instead of int --- source/blender/editors/space_userpref/space_userpref.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_userpref') diff --git a/source/blender/editors/space_userpref/space_userpref.c b/source/blender/editors/space_userpref/space_userpref.c index f986e909c7f..b5a6821d147 100644 --- a/source/blender/editors/space_userpref/space_userpref.c +++ b/source/blender/editors/space_userpref/space_userpref.c @@ -113,7 +113,7 @@ static void userpref_main_area_init(wmWindowManager *wm, ARegion *ar) static void userpref_main_area_draw(const bContext *C, ARegion *ar) { - ED_region_panels(C, ar, 1, NULL, -1); + ED_region_panels(C, ar, NULL, -1, true); } static void userpref_operatortypes(void) -- cgit v1.2.3