mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
Set promptDeleteFiles default to false.
Signed-off-by: Camila Ayres <hello@camilasan.com>
This commit is contained in:
parent
b10837754c
commit
69b318d43b
1 changed files with 1 additions and 1 deletions
|
@ -1041,7 +1041,7 @@ bool ConfigFile::showMainDialogAsNormalWindow() const {
|
|||
bool ConfigFile::promptDeleteFiles() const
|
||||
{
|
||||
QSettings settings(configFile(), QSettings::IniFormat);
|
||||
return settings.value(QLatin1String(promptDeleteC), true).toBool();
|
||||
return settings.value(QLatin1String(promptDeleteC), false).toBool();
|
||||
}
|
||||
|
||||
void ConfigFile::setPromptDeleteFiles(bool promptDeleteFiles)
|
||||
|
|
Loading…
Reference in a new issue