Skip to content

Commit

Permalink
removed comment, changed default value
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Oct 13, 2024
1 parent 5a5644f commit f35b97c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class FlowstateHelperConfig {
maxValue = 30,
minStep = 1
)
public int autoHide = 5;
public int autoHide = 10;

@Expose
@ConfigLink(owner = FlowstateHelperConfig.class, field = "enabled")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ object FlowstateHelper {
if (config.autoHide < 0) return false
val time = 10.seconds - config.autoHide.seconds
return (streakEndTimer - time).isInPast()
// if (displayMaxed && timeSinceMax.passedSince() > autoHide) return true
}

private fun createDisplay() {
Expand Down

0 comments on commit f35b97c

Please sign in to comment.