From fb796f2fb7415e7cf378773c1f2f438cf264d46f Mon Sep 17 00:00:00 2001 From: David Kocik Date: Sun, 13 Dec 2020 21:21:18 +0100 Subject: [PATCH] Typo in preferences string about single instace --- src/slic3r/GUI/Preferences.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index 4a608d24731..9c9ea8c4b35 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -158,11 +158,11 @@ void PreferencesDialog::build() #if __APPLE__ - def.label = L("Allow just single PrusaSlicer instance"); + def.label = L("Allow just a single PrusaSlicer instance"); def.type = coBool; def.tooltip = L("On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance."); #else - def.label = L("Allow just single PrusaSlicer instance"); + def.label = L("Allow just a single PrusaSlicer instance"); def.type = coBool; def.tooltip = L("If this is enabled, when starting PrusaSlicer and another instance of the same PrusaSlicer is already running, that instance will be reactivated instead."); #endif