ENH: ajust UI

1.replace save success dialog warning icon with normal icon
2.add a naming hints at save page
3.modify display text
4.remove help button at the top of caption

Change-Id: Ia258139ca0ae5c000caf0fd306c255b97caecd1e
This commit is contained in:
liz.li 2023-07-06 11:17:55 +08:00 committed by Lane.Wei
parent 8975562e8b
commit 8d3bd702e3
4 changed files with 30 additions and 12 deletions

View file

@ -364,6 +364,7 @@ CaliPageCaption::CaliPageCaption(wxWindow* parent, CalibMode cali_mode,
m_help_btn = new ScalableButton(this, wxID_ANY, "cali_page_caption_help",
wxEmptyString, wxDefaultSize, wxDefaultPosition, wxBU_EXACTFIT | wxNO_BORDER, true, 30);
m_help_btn->Hide();
m_help_btn->SetBackgroundColour(*wxWHITE);
caption_sizer->Add(m_help_btn, 0, wxALIGN_CENTER);
@ -438,7 +439,8 @@ void CaliPageCaption::show_prev_btn(bool show)
void CaliPageCaption::show_help_icon(bool show)
{
m_help_btn->Show(show);
//m_help_btn->Show(show);
m_help_btn->Hide();
}
CaliPageStepGuide::CaliPageStepGuide(wxWindow* parent, wxArrayString steps,