mirror of https://github.com/adamdruppe/arsd.git
call handler to support minigui selection logic
This commit is contained in:
parent
240b6cbc3d
commit
ac834e9e3b
|
@ -6546,6 +6546,8 @@ version(X11) {
|
||||||
void handleData(Atom target, in ubyte[] data) {
|
void handleData(Atom target, in ubyte[] data) {
|
||||||
if(target == GetAtom!"UTF8_STRING"(XDisplayConnection.get) || target == XA_STRING || target == GetAtom!"text/plain"(XDisplayConnection.get))
|
if(target == GetAtom!"UTF8_STRING"(XDisplayConnection.get) || target == XA_STRING || target == GetAtom!"text/plain"(XDisplayConnection.get))
|
||||||
handler(cast(const char[]) data);
|
handler(cast(const char[]) data);
|
||||||
|
else if(target == None && data is null)
|
||||||
|
handler(null); // no suitable selection exists
|
||||||
}
|
}
|
||||||
|
|
||||||
Atom findBestFormat(Atom[] answer) {
|
Atom findBestFormat(Atom[] answer) {
|
||||||
|
|
Loading…
Reference in New Issue