Skip to content

Commit

Permalink
rememberEnableIdling default=false (true is too surprising)
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Jan 13, 2024
1 parent e48218a commit 40ec914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hello_imgui/doc_params.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ struct FpsIdling

// `rememberEnableIdling`: _bool, default=true_.
// If true, the last value of enableIdling is restored from the settings at startup.
bool rememberEnableIdling = true;
bool rememberEnableIdling = false;
};
```

Expand Down
2 changes: 1 addition & 1 deletion src/hello_imgui/runner_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ struct FpsIdling

// `rememberEnableIdling`: _bool, default=true_.
// If true, the last value of enableIdling is restored from the settings at startup.
bool rememberEnableIdling = true;
bool rememberEnableIdling = false;
};
// @@md

Expand Down

0 comments on commit 40ec914

Please sign in to comment.