Use Gtk3's primary designator to replace all instances of <control> for accelerators and bindings.

svn: r20038
This commit is contained in:
John Ralls
2012-07-20 22:26:10 +00:00
parent cf6b91ffe9
commit 41e77a23bf
26 changed files with 93 additions and 93 deletions

View File

@@ -512,9 +512,9 @@ class StyledTextEditor(Gtk.TextView):
# action accelerators
self.action_accels = {
'<Control>i': str(StyledTextTagType.ITALIC),
'<Control>b': str(StyledTextTagType.BOLD),
'<Control>u': str(StyledTextTagType.UNDERLINE),
'<PRIMARY>i': str(StyledTextTagType.ITALIC),
'<PRIMARY>b': str(StyledTextTagType.BOLD),
'<PRIMARY>u': str(StyledTextTagType.UNDERLINE),
}
# create the action group and insert all the actions