From: André Pönitz Date: Thu, 29 Mar 2007 22:12:34 +0000 (+0000) Subject: make up/down vuttons in command bar narrower X-Git-Tag: 1.6.10~10423 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8e2f9e5bcaeeb7aa102f8300d7292e0db72279a8;p=features.git 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 --- 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);