diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2021-01-18 08:21:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-18 08:21:41 +0100 |
| commit | 59f055ba93381b965cdc04557ac1dce2df36bd07 (patch) | |
| tree | da831741fc6100921fe47ad2f20ab4f8b5605ef2 /src/settings.h | |
| parent | 2b1f01cba2a50a17db69187a1b4cbecf5a0fb65d (diff) | |
| parent | 1644d30e59e03b90a8a392ff54cdec527d4a85a5 (diff) | |
Merge pull request #1368 from Holt59/new-settings
Add settings to not check update on mod install and to auto-collapse on hover.
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index 5f6dd37c..96290f55 100644 --- a/src/settings.h +++ b/src/settings.h @@ -653,6 +653,17 @@ public: bool saveFilters() const; void setSaveFilters(bool b); + // whether to collapse groups (separators, categories, ...) after + // a delay when hovering (similar to auto-expand) + // + bool autoCollapseOnHover() const; + void setAutoCollapseOnHover(bool b); + + // whether to check for update after installing a mod + // + bool checkUpdateAfterInstallation() const; + void setCheckUpdateAfterInstallation(bool b); + // whether to show compact downloads // bool compactDownloads() const; |
