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) {