mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
Fix GUI strings that should start with uppercase (#12499)
This commit is contained in:
committed by
GitHub
parent
2806398e79
commit
72a4597107
@@ -1859,12 +1859,12 @@ wxBoxSizer* PreferencesDialog::create_debug_page()
|
||||
radio_group->SetSelection(3);
|
||||
}
|
||||
|
||||
Button* debug_button = new Button(m_parent, _L("debug save button"));
|
||||
Button* debug_button = new Button(m_parent, _L("Debug save button"));
|
||||
debug_button->SetStyle(ButtonStyle::Confirm, ButtonType::Window);
|
||||
|
||||
debug_button->Bind(wxEVT_LEFT_DOWN, [this, radio_group](wxMouseEvent &e) {
|
||||
// success message box
|
||||
MessageDialog dialog(this, _L("save debug settings"), _L("DEBUG settings have been saved successfully!"), wxNO_DEFAULT | wxYES_NO | wxICON_INFORMATION);
|
||||
MessageDialog dialog(this, _L("Save debug settings"), _L("DEBUG settings have been saved successfully!"), wxNO_DEFAULT | wxYES_NO | wxICON_INFORMATION);
|
||||
dialog.SetSize(400,-1);
|
||||
switch (dialog.ShowModal()) {
|
||||
case wxID_NO: {
|
||||
|
||||
Reference in New Issue
Block a user