fix: Use correct setting for updates and screenshot checkboxes (#446) (#451)

This commit is contained in:
Rene Leonhardt 2024-04-11 16:54:28 +02:00 committed by GitHub
parent 0cdd5096ba
commit 6de7696877
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -112,10 +112,10 @@ public class ConfigurationComponent {
checkForPluginUpdatesCheckBox = new JBCheckBox(
CodeGPTBundle.get("configurationConfigurable.checkForPluginUpdates.label"),
configuration.isCheckForNewScreenshots());
configuration.isCheckForPluginUpdates());
checkForNewScreenshotsCheckBox = new JBCheckBox(
CodeGPTBundle.get("configurationConfigurable.checkForNewScreenshots.label"),
configuration.isCheckForPluginUpdates());
configuration.isCheckForNewScreenshots());
openNewTabCheckBox = new JBCheckBox(
CodeGPTBundle.get("configurationConfigurable.openNewTabCheckBox.label"),
configuration.isCreateNewChatOnEachAction());