don't show scrollbars at all when the window is big enough
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
408a83cbe9
commit
3f393e3dbd
@ -659,9 +659,12 @@ void wxWindow::SetScrollbar(int orient,
|
||||
int range,
|
||||
bool refresh)
|
||||
{
|
||||
wxASSERT_MSG( pageSize <= range,
|
||||
_T("page size can't be greater than range") );
|
||||
|
||||
bool hasClientSizeChanged = FALSE;
|
||||
wxScrollBar *scrollbar = GetScrollbar(orient);
|
||||
if ( range )
|
||||
if ( range && (pageSize < range) )
|
||||
{
|
||||
if ( !scrollbar )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user