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:
authorCampbell Barton <ideasman42@gmail.com>2011-10-03 08:48:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-10-03 08:48:14 +0400
commitf571d1d238372b668eab88bb491eb48bd1327554 (patch)
tree7f195f5f838e4d16123ce5ef9fc5500cf1f0e6c0 /source/blender
parentd1c99081ea57a9ef55d51dc08ddb700da5f6bbf8 (diff)
fix [#27578] Fileselector UI area does not scale with UI (partially hides buttons)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/screen/area.c3
-rw-r--r--source/blender/editors/space_file/file_draw.c4
-rw-r--r--source/blender/editors/space_file/space_file.c5
3 files changed, 10 insertions, 2 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 041cb9091d9..28f486117b7 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -831,6 +831,9 @@ static void region_rect_recursive(ScrArea *sa, ARegion *ar, rcti *remainder, int
prefsizex= ar->sizex?ar->sizex:ar->type->prefsizex;
if(ar->regiontype==RGN_TYPE_HEADER)
prefsizey= ar->type->prefsizey;
+ else if(ar->regiontype==RGN_TYPE_UI && sa->spacetype == SPACE_FILE) {
+ prefsizey= UI_UNIT_Y * 2 + (UI_UNIT_Y/2);
+ }
else
prefsizey= ar->sizey?ar->sizey:ar->type->prefsizey;
diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index f7abb01546f..611bf79603e 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -111,8 +111,8 @@ void file_draw_buttons(const bContext *C, ARegion *ar)
{
/* Button layout. */
const int max_x = ar->winx - 10;
- const int line1_y = IMASEL_BUTTONS_HEIGHT/2 + IMASEL_BUTTONS_MARGIN*2;
- const int line2_y = IMASEL_BUTTONS_MARGIN;
+ const int line1_y = ar->winy - (IMASEL_BUTTONS_HEIGHT/2 + IMASEL_BUTTONS_MARGIN);
+ const int line2_y = line1_y - (IMASEL_BUTTONS_HEIGHT/2 + IMASEL_BUTTONS_MARGIN);
const int input_minw = 20;
const int btn_h = UI_UNIT_Y;
const int btn_fn_w = UI_UNIT_X;
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 18270bfaa26..f4adc471f70 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -520,9 +520,14 @@ static void file_ui_area_draw(const bContext *C, ARegion *ar)
glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT);
+ /* scrolling here is just annoying, disable it */
+ ar->v2d.cur.ymax= ar->v2d.cur.ymax - ar->v2d.cur.ymin;
+ ar->v2d.cur.ymin= 0;
+
/* set view2d view matrix for scrolling (without scrollers) */
UI_view2d_view_ortho(&ar->v2d);
+
file_draw_buttons(C, ar);
UI_view2d_view_restore(C);