Skip to content

Commit

Permalink
fix: tabgui controls (CCBlueX#4246)
Browse files Browse the repository at this point in the history
Since the bind system update the TabGui was broken due to an oversight.
  • Loading branch information
1zun4 authored Oct 25, 2024
1 parent 0ad7d8a commit efba89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-theme/src/routes/hud/elements/tabgui/TabGui.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
return;
}
switch (e.key.name) {
switch (e.key) {
case "key.keyboard.down":
if (renderedModules.length === 0) {
selectedCategoryIndex =
Expand Down

0 comments on commit efba89f

Please sign in to comment.