fix: cleanup UI, detect FAT and turn off links

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2023-02-09 16:19:38 -07:00
parent 397e7f0363
commit bc8336a4b1
9 changed files with 175 additions and 61 deletions

View File

@ -93,9 +93,9 @@ bool InstanceCopyPrefs::isCopyScreenshotsEnabled() const
return copyScreenshots;
}
bool InstanceCopyPrefs::isLinkFilesEnabled() const
bool InstanceCopyPrefs::isUseSymLinksEnabled() const
{
return linkFiles;
return useSymLinks;
}
bool InstanceCopyPrefs::isUseHardLinksEnabled() const
@ -159,9 +159,9 @@ void InstanceCopyPrefs::enableCopyScreenshots(bool b)
copyScreenshots = b;
}
void InstanceCopyPrefs::enableLinkFiles(bool b)
void InstanceCopyPrefs::enableUseSymLinks(bool b)
{
linkFiles = b;
useSymLinks = b;
}
void InstanceCopyPrefs::enableLinkRecursively(bool b)