summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-03-05 16:49:12 +0100
committerChristophe Fergeau <cfergeau@redhat.com>2012-03-05 16:51:16 +0100
commit6fb8f5bd4e53cc9af728bfc678fdb9ae7897bac2 (patch)
tree479fbb6e0092c6de42a90d09aaa643f7b0768cc6
parentfcb9c6364ea94d22e699707c8b707d6c932a9f61 (diff)
Default to enabling Ctrl+Alt+Del
On Linux, the default behaviour of the client is to have Ctrl+Alt+Del passthrough enabled, so it's better to default to enabling it from the controller as well to avoid getting a different behaviour when the client handles controller messages about CAD. Thanks to Uri for this suggestion.
-rw-r--r--SpiceXPI/src/plugin/plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/SpiceXPI/src/plugin/plugin.cpp b/SpiceXPI/src/plugin/plugin.cpp
index 1564b70..8fe7f73 100644
--- a/SpiceXPI/src/plugin/plugin.cpp
+++ b/SpiceXPI/src/plugin/plugin.cpp
@@ -236,7 +236,7 @@ NPBool nsPluginInstance::init(NPWindow *aWindow)
m_smartcard = PR_FALSE;
m_admin_console = PR_FALSE;
m_no_taskmgr_execution = PR_FALSE;
- m_send_ctrlaltdel = PR_FALSE;
+ m_send_ctrlaltdel = PR_TRUE;
return m_initialized;
}