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
This commit is contained in:
André Pönitz 2007-03-29 22:12:34 +00:00
parent c33d0a26d7
commit 8e2f9e5bca

View 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);