Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
UI: add user input config to Settings menu
Browse files Browse the repository at this point in the history
  • Loading branch information
hmuurine committed Mar 2, 2023
1 parent e83eaa3 commit 64b564d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Frontend/ui-library/src/Config/ConfigUI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,26 @@ export class ConfigUI {
this.flagsUi.get(Flags.HoveringMouseMode)
);

this.addSettingFlag(
viewSettingsSection,
this.flagsUi.get(Flags.EnableKeyboardInput)
);

this.addSettingFlag(
viewSettingsSection,
this.flagsUi.get(Flags.EnableMouseInput)
);

this.addSettingFlag(
viewSettingsSection,
this.flagsUi.get(Flags.EnableTouchInput)
);

this.addSettingFlag(
viewSettingsSection,
this.flagsUi.get(Flags.EnableGamePadInput)
);

this.addSettingFlag(viewSettingsSection, this.flagsUi.get(LightMode));

/* Setup all encoder related settings under this section */
Expand Down

0 comments on commit 64b564d

Please sign in to comment.