Add "Select all" checkbox + ui revamp + code cleanup

Signed-off-by: Marcelo Hernandez <marcelohdez.inq@gmail.com>
This commit is contained in:
Marcelo Hernandez 2022-10-22 23:04:36 -04:00
parent e7e56eb1e3
commit 15593b5c09
No known key found for this signature in database
GPG key ID: 1405A0E7C9C4D61D
9 changed files with 153 additions and 144 deletions

View file

@ -0,0 +1,15 @@
//
// Created by marcelohdez on 10/22/22.
//
#include "InstanceCopyPrefs.h"
InstanceCopyPrefs::InstanceCopyPrefs(bool setAll)
: copySaves(setAll),
keepPlaytime(setAll),
copyGameOptions(setAll),
copyResourcePacks(setAll),
copyShaderPacks(setAll),
copyServers(setAll),
copyMods(setAll)
{}