right sidebar: fix unused quick toggles being movable

This commit is contained in:
end-4
2025-10-24 15:11:27 +02:00
parent b23a2d4f2c
commit 93f8d0990f
@@ -153,6 +153,7 @@ GroupButton {
const toggleList = Config.options.sidebar.quickToggles.android.toggles;
const buttonType = root.buttonData.type;
const targetIndex = index + offset;
if (!toggleList.find(toggle => toggle.type === buttonType)) return;
if (targetIndex < 0 || targetIndex >= toggleList.length) return;
const temp = toggleList[index];
toggleList[index] = toggleList[targetIndex];