]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiHSpace.cpp
Fix bug #7906. Check the widgets after creating the dialog.
[lyx.git] / src / frontends / qt4 / GuiHSpace.cpp
index e2dcfc9961fe87e7a89fccba47d5886c9b37a60b..8be5c7fa2250386064666876db96079fd65bb055 100644 (file)
@@ -42,6 +42,7 @@ GuiHSpace::GuiHSpace(bool math_mode, QWidget * parent)
 
        spacingCO->clear();
        if (math_mode_) {
+               spacingCO->addItem(qt_("Interword Space"), toqstr("normal"));
                spacingCO->addItem(qt_("Thin Space"), toqstr("thinspace"));
                spacingCO->addItem(qt_("Medium Space"), toqstr("medspace"));
                spacingCO->addItem(qt_("Thick Space"), toqstr("thickspace"));
@@ -87,6 +88,7 @@ GuiHSpace::GuiHSpace(bool math_mode, QWidget * parent)
 
        // initialize the length validator
        addCheckedWidget(valueLE, valueL);
+       enableWidgets();
 }