]> git.lyx.org Git - features.git/commitdiff
make up/down vuttons in command bar narrower
authorAndré Pönitz <poenitz@gmx.net>
Thu, 29 Mar 2007 22:12:34 +0000 (22:12 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 29 Mar 2007 22:12:34 +0000 (22:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17637 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/QCommandBuffer.C

index dde8512bd41de54c498e777d8abac51bb6c25c31..b68e3a7a4201bc9f3d815e8a55429082f8ba28c6 100644 (file)
@@ -84,10 +84,12 @@ QCommandBuffer::QCommandBuffer(GuiView * view, ControlCommandBuffer & control)
        QHBoxLayout * layout = new QHBoxLayout(0);
 
        QPushButton * up = new QPushButton(qpup, "", this);
+       up->setMaximumSize(24, 24);
        up->setToolTip(qt_("Previous command"));
        connect(up, SIGNAL(clicked()), this, SLOT(up()));
        QPushButton * down = new QPushButton(qpdown, "", this);
        down->setToolTip(qt_("Next command"));
+       down->setMaximumSize(24, 24);
        connect(down, SIGNAL(clicked()), this, SLOT(down()));
 
        edit_ = new QCommandEdit(this);