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

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-04-23 16:10:01 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-04-23 16:10:01 +0300
commit995159119f005aaff7db93781d3ee5bb98533055 (patch)
treeabee2e632427b142fe5dc6ece528f423498df87e /plugins/www
parentd82102f2ef222973ff517f31fd91e5c7b4def03a (diff)
Fixing RemminaConnectionWindow map/unmap events
The remmina connection windows in fullscreen is a different object than when is in scrolled mode, therefore the old logic to map and unmap the windows from the plugin it was notr working. Now the events are managed directly from the RCW object and the RemminaProtocolWidget, with an API that can be used by any plugins. When in multi monitor and fullscreen, this mechanism doesn't work, Therefore, in the plugin itself I catch when we are in multi monitor fullscreen mode And I ignore the event. This last behaviour should be managed directly in the Remmina Protocol Widget (TODO). Fixes #2475 Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
Diffstat (limited to 'plugins/www')
-rw-r--r--plugins/www/www_plugin.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/www/www_plugin.c b/plugins/www/www_plugin.c
index 20633ec28..c9220b2bd 100644
--- a/plugins/www/www_plugin.c
+++ b/plugins/www/www_plugin.c
@@ -927,7 +927,9 @@ static RemminaProtocolPlugin remmina_plugin =
remmina_www_query_feature, // Query for available features
NULL, // Call feature
NULL, // Send keystroke
- remmina_plugin_www_get_snapshot // Capture screenshot
+ remmina_plugin_www_get_snapshot, // Capture screenshot
+ NULL, // RCW map event
+ NULL // RCW unmap event
};
G_MODULE_EXPORT gboolean remmina_plugin_entry(RemminaPluginService *service)