From 1b704b6267bb8144a410c02595887b0731cf4d53 Mon Sep 17 00:00:00 2001 From: jpc Date: Tue, 4 May 2021 18:00:50 +0200 Subject: [PATCH] Revert "Only set dummy X11 selection if we do not own it" This reverts commit af4ee1a487c4d899b71df02ba57c2f024fea6786. --- src/frontends/qt/GuiSelection.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/frontends/qt/GuiSelection.cpp b/src/frontends/qt/GuiSelection.cpp index e10bb476fd..0eb3d5133d 100644 --- a/src/frontends/qt/GuiSelection.cpp +++ b/src/frontends/qt/GuiSelection.cpp @@ -51,10 +51,9 @@ void GuiSelection::haveSelection(bool own) // an application actually requests it. // This way calling Selection::have() is cheap and we can do it as // often as we want. - if (own && !qApp->clipboard()->ownsSelection()) { - LYXERR(Debug::SELECTION, "GuiSelection: setting dummy selection"); + //LYXERR(Debug::SELECTION, "GuiSelection: setting dummy selection"); + if (own) qApp->clipboard()->setText(QString(), QClipboard::Selection); - } // We don't need to do anything if own = false, as this case is // handled by QT. // FIXME (gb): This is wrong. What is missing here is rather a call of -- 2.39.5