From ac834e9e3b02dfbd9ef343c45d9710cfff007ba8 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 14 Jul 2024 19:52:17 -0400 Subject: [PATCH] call handler to support minigui selection logic --- simpledisplay.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simpledisplay.d b/simpledisplay.d index 4442782..dd353f5 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -6546,6 +6546,8 @@ version(X11) { void handleData(Atom target, in ubyte[] data) { if(target == GetAtom!"UTF8_STRING"(XDisplayConnection.get) || target == XA_STRING || target == GetAtom!"text/plain"(XDisplayConnection.get)) handler(cast(const char[]) data); + else if(target == None && data is null) + handler(null); // no suitable selection exists } Atom findBestFormat(Atom[] answer) {