Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/remmina-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2018-09-27 01:33:00 +0300
committerAntenore Gatta <antenore@simbiosi.org>2018-09-27 01:33:00 +0300
commit49f37a8b125c413abc768152c3e3201e76796f2e (patch)
tree9bcc0359943cead1b9bb9a22aa0f2d782e6dfbfa
parent4cae6b31998cd05f394a480cad56b5040287c3cd (diff)
Plugin declare it uses GtkSocket and rcw block the call if not supported
-rw-r--r--nx_plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nx_plugin.c b/nx_plugin.c
index f4af629..d617b86 100644
--- a/nx_plugin.c
+++ b/nx_plugin.c
@@ -48,6 +48,7 @@
#include "nx_session_manager.h"
#define REMMINA_PLUGIN_NX_FEATURE_TOOL_SENDCTRLALTDEL 1
+#define REMMINA_PLUGIN_NX_FEATURE_GTKSOCKET 1
/* Forward declaration */
static RemminaProtocolPlugin remmina_plugin_nx;
@@ -725,6 +726,7 @@ static const RemminaProtocolSetting remmina_plugin_nx_advanced_settings[] =
static const RemminaProtocolFeature remmina_plugin_nx_features[] =
{
{ REMMINA_PROTOCOL_FEATURE_TYPE_TOOL, REMMINA_PLUGIN_NX_FEATURE_TOOL_SENDCTRLALTDEL, N_("Send Ctrl+Alt+Delete"), NULL, NULL },
+ { REMMINA_PROTOCOL_FEATURE_TYPE_GTKSOCKET, REMMINA_PLUGIN_NX_FEATURE_GTKSOCKET, NULL, NULL, NULL},
{ REMMINA_PROTOCOL_FEATURE_TYPE_END, 0, NULL, NULL, NULL }
};