Merge pull request #443 from Vulcalien/master
Bug Fix: 'Clear selection on copy' is always unchecked
This commit is contained in:
commit
f4a3c4e3ad
|
@ -790,7 +790,7 @@
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
<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="label" translatable="yes">Clear selection on copy</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
|
|
|
@ -353,6 +353,9 @@ class PrefsEditor:
|
||||||
# Smart copy
|
# Smart copy
|
||||||
widget = guiget('smart_copy')
|
widget = guiget('smart_copy')
|
||||||
widget.set_active(self.config['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
|
#Titlebar font selector
|
||||||
# Use system font
|
# Use system font
|
||||||
widget = guiget('title_system_font_checkbutton')
|
widget = guiget('title_system_font_checkbutton')
|
||||||
|
|
Loading…
Reference in New Issue