2
2
mirror of https://github.com/m1k1o/neko.git synced 2024-07-24 14:40:50 +12:00

cursors increase max serial to 300.

This commit is contained in:
Miroslav Šedivý 2023-02-21 00:14:50 +01:00
parent ccaaacac7c
commit 64abfd0b1a

@ -17,7 +17,7 @@ func NewImage(desktop types.DesktopManager) *ImageCtx {
desktop: desktop, desktop: desktop,
listeners: map[uintptr]*func(entry *ImageEntry){}, listeners: map[uintptr]*func(entry *ImageEntry){},
cache: map[uint64]*ImageEntry{}, cache: map[uint64]*ImageEntry{},
maxSerial: 200, // TODO: Cleanup? maxSerial: 300, // TODO: Cleanup?
} }
} }