From c268c480103f9f7fa8a1354bec0ae1efda25693f 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 1b7abf3858d3e..611cc9f34e151 100644 --- a/src/gui/macOS/fileprovidersettingscontroller_mac.mm +++ b/src/gui/macOS/fileprovidersettingscontroller_mac.mm @@ -213,11 +213,9 @@ void initialCheck() 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.")); } } }