Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix paste issue with mouse-copy.el #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/pgtkselect.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,16 @@ pgtk_own_selection (Lisp_Object selection_name, Lisp_Object selection_value,
/* Assert ownership over the selection. Ideally we would use only
the GDK selection API for this, but it just doesn't work on
Wayland. */
/* This check prevents "mouse-copy.el" from working. It fails with:
`Could not assert ownership over selection: SECONDARY`
hence I am commenting this check out.

if (!gdk_selection_owner_set_for_display (dpyinfo->display,
FRAME_GDK_WINDOW (f),
selection_atom,
timestamp, TRUE))
signal_error ("Could not assert ownership over selection", selection_name);
*/

/* Update the local cache */
{
Expand Down