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>2020-05-11 09:45:05 +0300
committerAntenore Gatta <antenore@simbiosi.org>2020-05-11 09:45:05 +0300
commit10269026565e5ee11599b3a5077f23cd9dc707e4 (patch)
tree3b5a1f35483428c20bad2be4f6f7ce7a304a51f8 /plugins/www/www_plugin.c
parent6e9909ba70d5e0834dd3f1eacbd9c3b03dc4d9a6 (diff)
parent84d7c443c167b8169e276eb79969550995fcca06 (diff)
Fixing merge conflicts from master
Diffstat (limited to 'plugins/www/www_plugin.c')
-rw-r--r--plugins/www/www_plugin.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/www/www_plugin.c b/plugins/www/www_plugin.c
index b0f6b8bb7..92edd883b 100644
--- a/plugins/www/www_plugin.c
+++ b/plugins/www/www_plugin.c
@@ -813,13 +813,6 @@ static void remmina_plugin_www_save_snapshot(GObject *object, GAsyncResult *resu
if (screenshot == NULL)
g_debug("WWW: gdk_pixbuf_get_from_surface failed");
- // Transfer the PixBuf in the main clipboard selection
- gchar *value = remmina_plugin_service->pref_get_value("deny_screenshot_clipboard");
- if (value && value == FALSE) {
- GtkClipboard *c = gtk_clipboard_get(GDK_SELECTION_CLIPBOARD);
- gtk_clipboard_set_image(c, screenshot);
- }
-
pngstr = g_string_new(g_strdup_printf("%s/%s.png",
remmina_plugin_service->pref_get_value("screenshot_path"),
remmina_plugin_service->pref_get_value("screenshot_name")));