24 lines
741 B
Diff
24 lines
741 B
Diff
|
commit c47fc5454039a9e7093f179c1e06ffc576dc1ad3
|
||
|
Author: Cole Robinson <crobinso@redhat.com>
|
||
|
Date: Mon Feb 6 17:57:14 2012 -0500
|
||
|
|
||
|
vnc: Fix accidental recursion we reporting grab keys
|
||
|
|
||
|
diff --git a/src/virtManager/console.py b/src/virtManager/console.py
|
||
|
index 3b39a6c..13fc755 100644
|
||
|
--- a/src/virtManager/console.py
|
||
|
+++ b/src/virtManager/console.py
|
||
|
@@ -387,12 +387,6 @@ class VNCViewer(Viewer):
|
||
|
def open_fd(self, fd):
|
||
|
self.display.open_fd(fd)
|
||
|
|
||
|
- def get_grab_keys(self):
|
||
|
- keystr = self.get_grab_keys()
|
||
|
- if not keystr:
|
||
|
- keystr = "Control_L+Alt_L"
|
||
|
- return keystr
|
||
|
-
|
||
|
def set_credential_username(self, cred):
|
||
|
self.display.set_credential(gtkvnc.CREDENTIAL_USERNAME, cred)
|
||
|
|