Fix bug #9153 (Using mathpanel to insert matrix creates extra space on top)

The code was setting the current index before filling the
combo box items.
This commit is contained in:
Enrico Forestieri 2014-06-08 23:59:59 +02:00
parent 3544ce4a4e
commit 970da7c5e2
2 changed files with 8 additions and 5 deletions

View File

@ -63,6 +63,11 @@ GuiMathMatrix::GuiMathMatrix(GuiView & lv)
{
setupUi(this);
for (int i = 0; *VertAligns[i]; ++i)
valignCO->addItem(qt_(VertAligns[i]));
for (int i = 0; *DecoChars[i]; ++i)
decorationCO->addItem(qt_(DecoChars[i]));
table->setMinimumSize(100, 100);
rowsSB->setValue(5);
columnsSB->setValue(5);
@ -91,11 +96,6 @@ GuiMathMatrix::GuiMathMatrix(GuiView & lv)
connect(decorationCO, SIGNAL(activated(int)),
this, SLOT(decorationChanged(int)));
for (int i = 0; *VertAligns[i]; ++i)
valignCO->addItem(qt_(VertAligns[i]));
for (int i = 0; *DecoChars[i]; ++i)
decorationCO->addItem(qt_(DecoChars[i]));
bc().setPolicy(ButtonPolicy::IgnorantPolicy);
}

View File

@ -155,6 +155,9 @@ We have fixed several significant issues involving conversion of 2.0
- Fix keyborad input of cyrillic characters in program listings (bug 9102).
- Fix default vertical alignment when inserting a math matrix through the
math toolbar or context menu (bug 9153).
* INTERNALS