From 2e30e19bff93bb7a5955ed72912edc7aee1aa3d1 Mon Sep 17 00:00:00 2001 From: Camila Ayres Date: Thu, 16 Oct 2025 23:38:31 +0200 Subject: [PATCH] style(file-provider): improve text displayed when user resets virtual files setup. Shorten it, removed unecessary information. Signed-off-by: Camila Ayres --- src/gui/macOS/fileprovidersettingscontroller_mac.mm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/gui/macOS/fileprovidersettingscontroller_mac.mm b/src/gui/macOS/fileprovidersettingscontroller_mac.mm index 8a19ba10f3..748d750e1a 100644 --- a/src/gui/macOS/fileprovidersettingscontroller_mac.mm +++ b/src/gui/macOS/fileprovidersettingscontroller_mac.mm @@ -372,11 +372,9 @@ void FileProviderSettingsController::setVfsEnabledForAccount(const QString &user emit vfsEnabledAccountsChanged(); if (setEnabled && showInformationDialog) { - QMessageBox::information(nullptr, - tr("macOS virtual files enabled"), - tr("Virtual files have been enabled for this account.\n" - "Files are accessible in Finder via an entry under the \"Locations\" section.\n" - "Please note that on macOS, virtual and classic sync folders are separate.\n")); + QMessageBox::information(nullptr, tr("Virtual files enabled"), + tr("Virtual files have been enabled for this account.\n\n" + "Your files are now accessible in Finder under the \"Locations\" section.")); } } }