diff options
author | Marcelo Hernandez <marcelohdez.inq@gmail.com> | 2022-10-29 22:27:31 -0400 |
---|---|---|
committer | Marcelo Hernandez <marcelohdez.inq@gmail.com> | 2022-10-29 22:27:31 -0400 |
commit | 5d1aac3c53904f7c843dc5cfdbdd33086eb4b6d6 (patch) | |
tree | cd341166288b588dbf1cc2b4f1730b51ddc42dbf /launcher/InstanceCopyPrefs.h | |
parent | c00f96c7ca49a624ea8e9c4774ea11e954bbdc4b (diff) | |
download | PrismLauncher-5d1aac3c53904f7c843dc5cfdbdd33086eb4b6d6.tar.gz PrismLauncher-5d1aac3c53904f7c843dc5cfdbdd33086eb4b6d6.tar.bz2 PrismLauncher-5d1aac3c53904f7c843dc5cfdbdd33086eb4b6d6.zip |
added option to not copy screenshots
+ moved select all checkbox to top row, centered.
Signed-off-by: Marcelo Hernandez <marcelohdez.inq@gmail.com>
Diffstat (limited to 'launcher/InstanceCopyPrefs.h')
-rw-r--r-- | launcher/InstanceCopyPrefs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/InstanceCopyPrefs.h b/launcher/InstanceCopyPrefs.h index 3855965d..6988b2df 100644 --- a/launcher/InstanceCopyPrefs.h +++ b/launcher/InstanceCopyPrefs.h @@ -18,6 +18,7 @@ struct InstanceCopyPrefs { [[nodiscard]] bool isCopyShaderPacksEnabled() const; [[nodiscard]] bool isCopyServersEnabled() const; [[nodiscard]] bool isCopyModsEnabled() const; + [[nodiscard]] bool isCopyScreenshotsEnabled() const; // Setters void enableCopySaves(bool b); void enableKeepPlaytime(bool b); @@ -26,6 +27,7 @@ struct InstanceCopyPrefs { void enableCopyShaderPacks(bool b); void enableCopyServers(bool b); void enableCopyMods(bool b); + void enableCopyScreenshots(bool b); protected: // data bool copySaves = true; @@ -35,4 +37,5 @@ struct InstanceCopyPrefs { bool copyShaderPacks = true; bool copyServers = true; bool copyMods = true; + bool copyScreenshots = true; }; |