mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-31 11:50:33 -07:00
ENH:Add a colon to the text
jira: STUDIO-10691 Change-Id: I3cbc1dbc8c05689fe63f8c1af28cab2ab2cef6cd (cherry picked from commit 986f0c72b85a1b1a0204d79cb149d684422c4b5b)
This commit is contained in:
parent
9252701cce
commit
3d93ed271b
1 changed files with 6 additions and 4 deletions
|
|
@ -2882,13 +2882,15 @@ void SyncAmsInfoDialog::reset_and_sync_ams_list()
|
|||
wxBoxSizer *ams_tip_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
if (is_first_row) {
|
||||
is_first_row = false;
|
||||
auto tip0_text = new wxStaticText(m_filament_panel, wxID_ANY, _CTX(L_CONTEXT("Original", "Sync_AMS"), "Sync_AMS"));
|
||||
auto tip0_text = new wxStaticText(m_filament_panel, wxID_ANY, _CTX(L_CONTEXT("Original", "Sync_AMS"), "Sync_AMS") + ":");
|
||||
tip0_text->SetForegroundColour(wxColour(107, 107, 107, 100));
|
||||
ams_tip_sizer->Add(tip0_text, 0, wxALIGN_LEFT | wxTOP, FromDIP(2));
|
||||
tip0_text->SetFont(::Label::Head_12);
|
||||
ams_tip_sizer->Add(tip0_text, 0, wxALIGN_LEFT | wxTOP, FromDIP(6));
|
||||
|
||||
auto tip1_text = new wxStaticText(m_filament_panel, wxID_ANY, _L("AMS"));
|
||||
auto tip1_text = new wxStaticText(m_filament_panel, wxID_ANY, _L("AMS") + ":");
|
||||
tip1_text->SetForegroundColour(wxColour(107, 107, 107, 100));
|
||||
ams_tip_sizer->Add(tip1_text, 0, wxALIGN_LEFT | wxTOP, FromDIP(6));
|
||||
tip1_text->SetFont(::Label::Head_12);
|
||||
ams_tip_sizer->Add(tip1_text, 0, wxALIGN_LEFT | wxTOP, FromDIP(9));
|
||||
}
|
||||
m_sizer_ams_mapping->Add(ams_tip_sizer, 0, wxALIGN_LEFT | wxTOP, FromDIP(2));
|
||||
contronal_index++;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue