You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A compatible solution could be to provide a more generic
peekWindowProperty∷Storablea⇒ (Int→Ptra→IOb) →Int→Display→Atom→Window→IO (Maybeb)
peekWindowProperty peekFunction bits d atom w =-- Implementation like current implementation of `rawGetWindowProperty`,-- but with `peekArray` replaced by `peekFunction`.rawGetWindowProperty∷Storablea⇒Int→Display→Atom→Window→IO (Maybe [a])
rawGetWindowProperty = peekWindowProperty peekArray
for very large properties such as "_NET_WM_ICON" lists can be slow enough that it makes certain things unfeasible.
The text was updated successfully, but these errors were encountered: