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

View File

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