FIX:optimize the layout of SN input controls

jira:[STUDIO-11304]

Change-Id: I45663121431fadcafed232c319ff69d6c616eff2
(cherry picked from commit baabcdd654327085d33c6b2067f7281af07e3b4b)
This commit is contained in:
tao wang 2025-04-08 10:56:02 +08:00 committed by Noisyfox
parent bdc9e421cc
commit c4aad8640d

View file

@ -1645,9 +1645,11 @@ InputIpAddressDialog::InputIpAddressDialog(wxWindow *parent)
}
m_input_sn_area->Add(m_tips_sn, 0, wxALIGN_CENTER, 0);
m_input_sn_area->Add(0, 0, 0, wxLEFT, FromDIP(20));
m_input_sn_area->Add(m_tips_modelID, 0, wxALIGN_CENTER, 0);
m_input_modelID_area->Add(m_input_sn, 0, wxALIGN_CENTER, 0);
m_input_modelID_area->Add(0, 0, 0, wxLEFT, FromDIP(20));
m_input_modelID_area->Add(m_input_modelID, 0, wxALIGN_CENTER, 0);
auto* tips_printer_name = new Label(ip_input_bot_panel, _L("Printer name"));