WebUI: add missing debounce handler

PR #22830.
This commit is contained in:
Thomas Piccirello
2025-06-09 06:46:07 -07:00
committed by GitHub
parent c215c1e8b1
commit ff07591a87

View File

@@ -277,9 +277,9 @@ const initializeWindows = () => {
paddingHorizontal: 0,
width: loadWindowWidth(id, 900),
height: loadWindowHeight(id, 400),
onResize: () => {
onResize: window.qBittorrent.Misc.createDebounceHandler(500, (e) => {
saveWindowSize(id);
}
})
});
});