Skip to content

Commit

Permalink
Merge pull request #443 from Vulcalien/master
Browse files Browse the repository at this point in the history
Bug Fix: 'Clear selection on copy' is always unchecked
  • Loading branch information
mattrose committed Jun 3, 2021
2 parents 0133361 + f65770d commit f4a3c4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/preferences.glade
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@
</packing>
</child>
<child>
<object class="GtkCheckButton">
<object class="GtkCheckButton" id="clear_select_on_copy">
<property name="label" translatable="yes">Clear selection on copy</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
Expand Down
3 changes: 3 additions & 0 deletions terminatorlib/prefseditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ def set_values(self):
# Smart copy
widget = guiget('smart_copy')
widget.set_active(self.config['smart_copy'])
# Clear selection on copy
widget = guiget('clear_select_on_copy')
widget.set_active(self.config['clear_select_on_copy'])
#Titlebar font selector
# Use system font
widget = guiget('title_system_font_checkbutton')
Expand Down

0 comments on commit f4a3c4e

Please sign in to comment.