Avoid drawing the scroll bars if the widget is non-visible
This commit is contained in:
parent
7c46d52ef4
commit
b9ef1200e8
|
@ -556,15 +556,18 @@ void FTextView::adjustSize()
|
||||||
hbar->setValue (xoffset);
|
hbar->setValue (xoffset);
|
||||||
hbar->resize();
|
hbar->resize();
|
||||||
|
|
||||||
if ( last_line < int(height) + nf_offset - 1 )
|
if ( isShown() )
|
||||||
vbar->hide();
|
{
|
||||||
else
|
if ( last_line < int(height) + nf_offset - 1 )
|
||||||
vbar->show();
|
vbar->hide();
|
||||||
|
else
|
||||||
|
vbar->show();
|
||||||
|
|
||||||
if ( max_width < int(width) - nf_offset - 1 )
|
if ( max_width < int(width) - nf_offset - 1 )
|
||||||
hbar->hide();
|
hbar->hide();
|
||||||
else
|
else
|
||||||
hbar->show();
|
hbar->show();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue