Fix for modified state not set after next change following a ChangeValue()

See #17540
This commit is contained in:
Paul Cornett
2017-12-05 06:41:08 -08:00
parent f2106dcc3c
commit 696a5ba3dd
2 changed files with 4 additions and 2 deletions

View File

@@ -205,8 +205,8 @@ private:
// the widget used for single line controls
GtkWidget *m_text;
bool m_modified:1;
bool m_dontMarkDirty:1;
bool m_modified;
bool m_dontMarkDirty;
int m_countUpdatesToIgnore;