From 40ab9be14a26b5a032fbb5512bc3dc7d0d3c4a2a Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 25 Mar 2013 15:45:59 +0000 Subject: [PATCH] Bug fix: On screen/area refresh calls the header scroll offset was cleared too. Probably an old remainder of early 2.5 coding. Should be not needed so much. --- source/blender/editors/screen/area.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index 2d6e8d0ada0..eb52c06d08f 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -1847,7 +1847,6 @@ void ED_region_header(const bContext *C, ARegion *ar) void ED_region_header_init(ARegion *ar) { - ar->v2d.flag &= ~V2D_IS_INITIALISED; UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy); }