call handler to support minigui selection logic

This commit is contained in:
Adam D. Ruppe 2024-07-14 19:52:17 -04:00
parent 240b6cbc3d
commit ac834e9e3b
1 changed files with 2 additions and 0 deletions

View File

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