From 5c92641c4d43805125ce7ed81292cd6fc26aba66 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=BCmmel?= Date: Wed, 1 Nov 2006 17:51:56 +0000 Subject: [PATCH] disable scrollbar when it is not needed, especially for the empty start up window git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15677 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiWorkArea.C | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/qt4/GuiWorkArea.C b/src/frontends/qt4/GuiWorkArea.C index 5a20b5401f..2d285d8e87 100644 --- a/src/frontends/qt4/GuiWorkArea.C +++ b/src/frontends/qt4/GuiWorkArea.C @@ -245,6 +245,7 @@ void GuiWorkArea::setScrollbarParams(int h, int scroll_pos, int scroll_line_step h += height() / 4; int scroll_max_ = std::max(0, h - height()); + setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); verticalScrollBar()->setRange(0, scroll_max_); verticalScrollBar()->setSliderPosition(scroll_pos); verticalScrollBar()->setSingleStep(scroll_line_step); -- 2.39.2