Correct fix for T47047

Caused new 2d views to initialize w/o scrollbars
This commit is contained in:
Campbell Barton 2016-01-25 08:33:22 +11:00
parent d631252109
commit 2a50760873
Notes: blender-bot 2023-02-14 08:17:08 +01:00
Referenced by issue #47229, Scrollbars not visible on newly created Dopesheet/Graph/NLA/Sequencer/Timeline editors
1 changed files with 6 additions and 7 deletions

View File

@ -212,11 +212,6 @@ void UI_view2d_region_reinit(View2D *v2d, short type, int winx, int winy)
do_init = (v2d->flag & V2D_IS_INITIALISED) == 0;
/* initialize without scroll bars (interferes with zoom level see: T47047) */
if (do_init) {
v2d->scroll |= V2D_SCROLL_VERTICAL_FULLR | V2D_SCROLL_HORIZONTAL_FULLR;
}
/* see eView2D_CommonViewTypes in UI_view2d.h for available view presets */
switch (type) {
/* 'standard view' - optimum setup for 'standard' view behavior,
@ -322,8 +317,12 @@ void UI_view2d_region_reinit(View2D *v2d, short type, int winx, int winy)
v2d->keeptot = V2D_KEEPTOT_BOUNDS;
/* note, scroll is being flipped in ED_region_panels() drawing */
v2d->scroll |= V2D_SCROLL_HORIZONTAL_HIDE;
v2d->scroll |= V2D_SCROLL_VERTICAL_HIDE;
v2d->scroll |= (V2D_SCROLL_HORIZONTAL_HIDE | V2D_SCROLL_VERTICAL_HIDE);
/* initialize without scroll bars (interferes with zoom level see: T47047) */
if (do_init) {
v2d->scroll |= (V2D_SCROLL_VERTICAL_FULLR | V2D_SCROLL_HORIZONTAL_FULLR);
}
if (do_init) {
float panelzoom = (style) ? style->panelzoom : 1.0f;