From fc6b447b4ae84901b17431ae1766fc581233e1f1 Mon Sep 17 00:00:00 2001 From: Stone Li Date: Fri, 16 May 2025 16:24:05 +0800 Subject: [PATCH] FIX: fix missing translation issue JIRA: none Change-Id: I163550c2e784a5920dbfeb3ee7d9344506da1567 Signed-off-by: Stone Li --- src/slic3r/GUI/Preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index 5d28a1a0a..89d12369f 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -323,7 +323,7 @@ wxBoxSizer *PreferencesDialog::create_item_region_combobox(wxString title, wxWin NetworkAgent* agent = wxGetApp().getAgent(); AppConfig* config = GUI::wxGetApp().app_config; if (agent) { - MessageDialog msg_wingow(this, _L("Changing the region will log out your account.\n") + "\n" + _L("Do you want to continue?"), L("Region selection"), + MessageDialog msg_wingow(this, _L("Changing the region will log out your account.\n") + "\n" + _L("Do you want to continue?"), _L("Region selection"), wxICON_QUESTION | wxOK | wxCANCEL); if (msg_wingow.ShowModal() == wxID_CANCEL) { combobox->SetSelection(current_region);