From 8e2f9e5bcaeeb7aa102f8300d7292e0db72279a8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 29 Mar 2007 22:12:34 +0000 Subject: [PATCH] make up/down vuttons in command bar narrower git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17637 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/QCommandBuffer.C | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontends/qt4/QCommandBuffer.C b/src/frontends/qt4/QCommandBuffer.C index dde8512bd4..b68e3a7a42 100644 --- a/src/frontends/qt4/QCommandBuffer.C +++ b/src/frontends/qt4/QCommandBuffer.C @@ -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); -- 2.39.2