mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +00:00
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:
parent
3544ce4a4e
commit
970da7c5e2
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user