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

gitlab.com/Remmina/FreeRDP-Ubuntu-PPA.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0034-Fixed-6938-Remote-app-mode-clipboard-fix.patch')
-rw-r--r--debian/patches/0034-Fixed-6938-Remote-app-mode-clipboard-fix.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/debian/patches/0034-Fixed-6938-Remote-app-mode-clipboard-fix.patch b/debian/patches/0034-Fixed-6938-Remote-app-mode-clipboard-fix.patch
deleted file mode 100644
index 113fc74..0000000
--- a/debian/patches/0034-Fixed-6938-Remote-app-mode-clipboard-fix.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From f3aa8251145fe1bd917aebd3b9e0ab65d396e78e Mon Sep 17 00:00:00 2001
-From: akallabeth <akallabeth@posteo.net>
-Date: Fri, 16 Apr 2021 10:50:08 +0200
-Subject: [PATCH] Fixed #6938: Remote app mode clipboard fix
-
-In remote app mode the _FREERDP_TIMESTAMP_PROPERTY does not work.
-Therefore ignore it
-
-(cherry picked from commit f2254f0b09a5fbc424ef3876cb47b03d83963c38)
----
- client/X11/xf_cliprdr.c | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/client/X11/xf_cliprdr.c b/client/X11/xf_cliprdr.c
-index 0e6cd036f..4b22edd38 100644
---- a/client/X11/xf_cliprdr.c
-+++ b/client/X11/xf_cliprdr.c
-@@ -1423,7 +1423,10 @@ static UINT xf_cliprdr_server_format_list(CliprdrClientContext* context,
- }
-
- ret = xf_cliprdr_send_client_format_list_response(clipboard, TRUE);
-- xf_cliprdr_prepare_to_set_selection_owner(xfc, clipboard);
-+ if (xfc->remote_app)
-+ xf_cliprdr_set_selection_owner(xfc, clipboard, CurrentTime);
-+ else
-+ xf_cliprdr_prepare_to_set_selection_owner(xfc, clipboard);
- return ret;
- }
-
---
-2.30.2
-