We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3e2f1b commit 7179673Copy full SHA for 7179673
1 file changed
plugin/src/main/java/io/snyk/eclipse/plugin/views/snyktoolview/handlers/BaseHandler.java
@@ -12,6 +12,7 @@
12
import org.eclipse.ui.menus.UIElement;
13
14
import io.snyk.eclipse.plugin.properties.preferences.Preferences;
15
+import io.snyk.languageserver.LsConfigurationUpdater;
16
17
public class BaseHandler extends AbstractHandler implements IElementUpdater {
18
@@ -30,6 +31,9 @@ public Object execute(ExecutionEvent event) throws ExecutionException {
30
31
32
Preferences.getInstance().store(preferenceKey,
33
Boolean.valueOf(!Preferences.getInstance().getBooleanPref(preferenceKey)).toString());
34
+
35
+ new LsConfigurationUpdater().configurationChanged();
36
37
return null;
38
}
39
0 commit comments