Skip to content

Commit

Permalink
#3070 add 'input-method' and 'shortcut-modifiers'
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 10, 2021
1 parent 0e860cf commit d859be5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions xpra/gtk_common/start_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,20 @@ def populate_form(self):
self.combo(tb, "Keyboard Layout", "keyboard-layout", layouts)
self.bool_cb(tb, "State Synchronization", "keyboard-sync")
self.bool_cb(tb, "Raw Mode", "keyboard-raw")
self.combo(tb, "Input Method", "input-method", {
"none" : "default",
"keep" : "unchanged",
"xim" : "xim",
"IBus" : "IBus",
"SCIM" : "SCIM",
"uim" : "uim",
})
self.combo(tb, "Shortcut Modifiers", "shortcut-modifiers", {
"auto" : "auto",
"shift + control" : "Shift+Control",
"control + alt" : "Control+Alt",
"shift + alt" : "Shift+Alt",
})
self.vbox.show_all()


Expand Down

0 comments on commit d859be5

Please sign in to comment.