Browse Source

bug-fix: fix auto heading sequence regular expression

Le Tan 8 years ago
parent
commit
be5f7d2b6b
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/vlineedit.cpp

+ 2 - 0
src/vlineedit.cpp

@@ -36,6 +36,8 @@ void VLineEdit::handleTextChanged(const QString &p_text)
 
 void VLineEdit::init()
 {
+    m_evaluatedText = g_mwMgr->evaluate(text());
+
     connect(this, &QLineEdit::textChanged,
             this, &VLineEdit::handleTextChanged);
 }