Fixed #24 (Text insert dialog possible bug in 0.25 but not in 0.24)

This commit is contained in:
Matthias Koefferlein 2017-12-01 22:36:33 +01:00
parent 8e55a4171e
commit 54a373572f
2 changed files with 10 additions and 0 deletions

View File

@ -208,6 +208,15 @@ BEGIN_PROTECTED
END_PROTECTED_W (this)
}
void
EditorOptionsPages::accept ()
{
BEGIN_PROTECTED
do_apply ();
QDialog::accept ();
END_PROTECTED_W (this)
}
// ------------------------------------------------------------------
// EditorOptionsGeneric implementation

View File

@ -101,6 +101,7 @@ public:
public slots:
void apply ();
void setup ();
void accept ();
private:
std::vector <edt::EditorOptionsPage *> m_pages;