Skip to content

Commit

Permalink
Fix incorrect default for Additional Branch Optimization setting (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkruselj authored Jan 30, 2024
1 parent 44fc3d8 commit 231d1bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ksp_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def run(self):
optimize = settings.get('ksp_optimize_code', False)
combine_callbacks = settings.get('ksp_combine_callbacks', False)
sanitize_exit_command = settings.get('ksp_sanitize_exit_command', True)
additional_branch_optimization = settings.get('ksp_additional_branch_optimization', True)
additional_branch_optimization = settings.get('ksp_additional_branch_optimization', False)
add_compiled_date_comment = settings.get('ksp_add_compiled_date', True)
should_play_sound = settings.get('ksp_play_sound', False)

Expand Down Expand Up @@ -561,7 +561,7 @@ def run(self, edit, new_text = ''):


class KspGlobalSettingToggleCommand(sublime_plugin.ApplicationCommand):
'''Handles toggeled sublime settings'''
'''Handles SublimeKSP setting toggles'''

def run(self, setting, default):
sksp_options_dict = {
Expand Down

0 comments on commit 231d1bd

Please sign in to comment.