aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/fakevim
diff options
context:
space:
mode:
authorMarcus Tillmanns <marcus.tillmanns@qt.io>2023-11-03 15:44:38 +0100
committerMarcus Tillmanns <marcus.tillmanns@qt.io>2023-11-07 08:54:34 +0000
commit824fee183c5653a4077775c072759601fa8086f8 (patch)
tree931c6c40f26431b093ce37aaa8d560bf40114a9f /src/plugins/fakevim
parentdce08c5b9e304c44d040190a4d8f9bfa17287c44 (diff)
Fix setEnabler / readSettings order
BaseAspect::setEnabler requires the settings to be read already. This is because readSettings() does not emit "valueChanged", and so the connections from the enabler to the target are not triggered. Change-Id: I0c95e2b516cd03c1dbad653288b44510ec7ea800 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/fakevim')
-rw-r--r--src/plugins/fakevim/fakevimactions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/fakevim/fakevimactions.cpp b/src/plugins/fakevim/fakevimactions.cpp
index b4d568c7f0..a7c0eee43a 100644
--- a/src/plugins/fakevim/fakevimactions.cpp
+++ b/src/plugins/fakevim/fakevimactions.cpp
@@ -156,8 +156,6 @@ FakeVimSettings::FakeVimSettings()
Row ints { shiftWidth, tabStop, scrollOff, st };
- vimRcPath.setEnabler(&readVimRc);
-
Column strings {
backspace,
isKeyword,
@@ -239,6 +237,8 @@ FakeVimSettings::FakeVimSettings()
readSettings();
+ vimRcPath.setEnabler(&readVimRc);
+
#endif
}