fix(ags): fix latest breaking changes

This commit is contained in:
matt1432 2024-02-11 02:18:59 -05:00
commit 281e00c7fe
20 changed files with 53 additions and 53 deletions
modules/ags/config/ts/quick-settings

View file

@ -132,10 +132,10 @@ const GridButton = ({
on_primary_click_release: () => {
ButtonStates.forEach((state) => {
if (state !== Activated) {
state.value = false;
state.setValue(false);
}
});
Activated.value = !Activated.value;
Activated.setValue(!Activated.value);
},
on_hover: (self) => {