Skip to content

Commit 6de7696

Browse files
fix: Use correct setting for updates and screenshot checkboxes (#446) (#451)
1 parent 0cdd509 commit 6de7696

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/ee/carlrobert/codegpt/settings/configuration/ConfigurationComponent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ public void changedUpdate(DocumentEvent e) {
112112

113113
checkForPluginUpdatesCheckBox = new JBCheckBox(
114114
CodeGPTBundle.get("configurationConfigurable.checkForPluginUpdates.label"),
115-
configuration.isCheckForNewScreenshots());
115+
configuration.isCheckForPluginUpdates());
116116
checkForNewScreenshotsCheckBox = new JBCheckBox(
117117
CodeGPTBundle.get("configurationConfigurable.checkForNewScreenshots.label"),
118-
configuration.isCheckForPluginUpdates());
118+
configuration.isCheckForNewScreenshots());
119119
openNewTabCheckBox = new JBCheckBox(
120120
CodeGPTBundle.get("configurationConfigurable.openNewTabCheckBox.label"),
121121
configuration.isCreateNewChatOnEachAction());

0 commit comments

Comments
 (0)