We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71c510 commit 2a24012Copy full SHA for 2a24012
1 file changed
config/config.go
@@ -669,6 +669,7 @@ func LoadConfig() (*Config, error) {
669
UndoDelaySeconds int `json:"undo_delay_seconds,omitempty"`
670
PluginSettings map[string]map[string]interface{} `json:"plugin_settings,omitempty"`
671
HasSeenSetupGuide bool `json:"has_seen_setup_guide,omitempty"`
672
+ MouseEnabled *bool `json:"mouse_enabled,omitempty"`
673
}
674
675
var raw diskConfig
@@ -715,6 +716,7 @@ func LoadConfig() (*Config, error) {
715
716
config.UndoDelaySeconds = raw.UndoDelaySeconds
717
config.PluginSettings = raw.PluginSettings
718
config.HasSeenSetupGuide = raw.HasSeenSetupGuide
719
+ config.MouseEnabled = raw.MouseEnabled
720
721
for _, rawAcc := range raw.Accounts {
722
acc := Account{
0 commit comments