ENH:Add a colon to the text
jira: STUDIO-10691 Change-Id: I3cbc1dbc8c05689fe63f8c1af28cab2ab2cef6cd
This commit is contained in:
parent
b2ed01716b
commit
986f0c72b8
|
@ -2880,13 +2880,15 @@ void SyncAmsInfoDialog::reset_and_sync_ams_list()
|
||||||
wxBoxSizer *ams_tip_sizer = new wxBoxSizer(wxVERTICAL);
|
wxBoxSizer *ams_tip_sizer = new wxBoxSizer(wxVERTICAL);
|
||||||
if (is_first_row) {
|
if (is_first_row) {
|
||||||
is_first_row = false;
|
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));
|
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));
|
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));
|
m_sizer_ams_mapping->Add(ams_tip_sizer, 0, wxALIGN_LEFT | wxTOP, FromDIP(2));
|
||||||
contronal_index++;
|
contronal_index++;
|
||||||
|
|
Loading…
Reference in New Issue