Fix bug http://bugzilla.lyx.org/show_bug.cgi?id=5567: Enable up button in command buffer widget.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27701 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2008-11-25 13:20:54 +00:00
parent bf8c0ff40d
commit cf247233c9

View File

@ -97,6 +97,7 @@ GuiCommandBuffer::GuiCommandBuffer(GuiView * view)
down->setToolTip(qt_("Next command"));
down->setMaximumSize(24, 24);
connect(down, SIGNAL(clicked()), this, SLOT(down()));
connect(up, SIGNAL(clicked()), this, SLOT(up()));
edit_ = new GuiCommandEdit(this);
edit_->setMinimumSize(edit_->sizeHint());