Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LostLuma committed Jun 22, 2024
1 parent afa99b9 commit 3b60b79
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static Screen genConfigScreen(Screen parent) {
general.addEntry(
entryBuilder.startBooleanToggle(
localized("config", "enabled"),
config.enabled()
config.enabled()
)
.setDefaultValue(defaultConfig.enabled())
.setSaveConsumer(config::setEnabled)
Expand All @@ -55,7 +55,7 @@ public static Screen genConfigScreen(Screen parent) {
general.addEntry(
entryBuilder.startBooleanToggle(
localized("config", "uncap_menu_frame_rate"),
config.uncapMenuFrameRate()
config.uncapMenuFrameRate()
)
.setDefaultValue(defaultConfig.uncapMenuFrameRate())
.setSaveConsumer(config::setUncapMenuFrameRate)
Expand All @@ -70,7 +70,7 @@ public static Screen genConfigScreen(Screen parent) {
general.addEntry(
entryBuilder.startIntSlider(
localized("config", "idle_time"),
config.idle().timeout() / 60,
config.idle().timeout() / 60,
0, 30
)
.setDefaultValue(defaultConfig.idle().timeout() / 60)
Expand All @@ -84,7 +84,7 @@ public static Screen genConfigScreen(Screen parent) {
entryBuilder.startEnumSelector(
localized("config", "idle_condition"),
IdleCondition.class,
config.idle().condition()
config.idle().condition()
)
.setDefaultValue(defaultConfig.idle().condition())
.setSaveConsumer(config.idle()::setCondition)
Expand Down

0 comments on commit 3b60b79

Please sign in to comment.