ae026a575b
* Merged code with python-virtinst. virtinst is no longer public * Port from GTK2 to GTK3 (Daniel Berrange, Cole Robinson) * Port from gconf to gsettings * Port from autotools to python distutils * Remove virt-manager-tui * Remove HAL support * IPv6 and static route virtual network support (Gene Czarcinski) * virt-install: Add –cpu host-passthrough (Ken ICHIKAWA, Hu Tao) OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=129
22 lines
1.1 KiB
Diff
22 lines
1.1 KiB
Diff
Index: virt-manager-0.10.0/virtManager/uihelpers.py
|
|
===================================================================
|
|
--- virt-manager-0.10.0.orig/virtManager/uihelpers.py
|
|
+++ virt-manager-0.10.0/virtManager/uihelpers.py
|
|
@@ -1018,6 +1018,16 @@ def build_keycombo_menu(cb):
|
|
make_item("Ctrl+Alt+_Backspace", ["Control_L", "Alt_L", "BackSpace"])
|
|
make_item("Ctrl+Alt+_Delete", ["Control_L", "Alt_L", "Delete"])
|
|
menu.add(Gtk.SeparatorMenuItem())
|
|
+ make_item("Ctrl+Scroll+Scroll", ["Control_L", "Scroll" + "Scroll"])
|
|
+ make_item("Alt+F_10", ["Alt_L", "F10"])
|
|
+ make_item("Alt+Tab", ["Alt_L", "Tab"])
|
|
+ make_item("Alt+Escape", ["Alt_L", "Escape"])
|
|
+ make_item("Ctrl+Escape", ["Control_L", "Escape"])
|
|
+ make_item("Ctrl+Alt+Escape", ["Control_L", "Alt_L", "Escape"])
|
|
+ make_item("Alt+Shift+Shift+Escape", ["Alt_R", "Shift_R", "Shift_L", "Escape"])
|
|
+ make_item("F_8", ["F8"])
|
|
+ make_item("F_10", ["F10"])
|
|
+ menu.add(Gtk.SeparatorMenuItem())
|
|
|
|
for i in range(1, 13):
|
|
make_item("Ctrl+Alt+F_%d" % i, ["Control_L", "Alt_L", "F%d" % i])
|