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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-05 21:41:28 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-05 21:41:28 +0300
commit8a04f039adc852644bbdc8231353cce215692874 (patch)
tree452990609bafea1643bd55f434b80235de4dc79a /source/blender/editors/space_outliner
parent5e6041496174904e1745b39517b63b0dff78326b (diff)
* seems like cur and tot were mixed up, thus preventing panning from working
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/space_outliner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/space_outliner.c b/source/blender/editors/space_outliner/space_outliner.c
index b00572cc7b0..6039bee3db5 100644
--- a/source/blender/editors/space_outliner/space_outliner.c
+++ b/source/blender/editors/space_outliner/space_outliner.c
@@ -393,7 +393,7 @@ static void outliner_main_area_draw(const bContext *C, ARegion *ar)
if ((rows*ROW_HEIGHT) > height)
height= rows * ROW_HEIGHT;
- width= (cols + 1) * COLUMN_WIDTH;
+ width= cols * COLUMN_WIDTH;
/* need to validate view2d after updating size of tot */
UI_view2d_totRect_set(v2d, width, height);