FIX:added icon for chamber temperature change

jira:[STUDIO-3902]

Change-Id: I699ae5025e80a2914276ee505bead9bac151f219
This commit is contained in:
tao wang 2023-08-28 15:16:03 +08:00 committed by Lane.Wei
parent ddda60d479
commit 1266e1f19e
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.1257 1.5H2.04628C1.74458 1.5 1.5 1.74458 1.5 2.04628V14.0784C1.5 14.3801 1.74458 14.6247 2.04628 14.6247H13.1257C13.4274 14.6247 13.672 14.3801 13.672 14.0784V2.04628C13.672 1.74458 13.4274 1.5 13.1257 1.5Z" stroke="#FF6F00"/>
<path d="M10.8542 4.23242H4.31679C4.01509 4.23242 3.77051 4.477 3.77051 4.7787V5.8756C3.77051 6.1773 4.01509 6.42188 4.31679 6.42188H10.8542C11.1559 6.42188 11.4005 6.1773 11.4005 5.8756V4.7787C11.4005 4.477 11.1559 4.23242 10.8542 4.23242Z" stroke="#FF6F00"/>
<path d="M8.12893 9.70117H4.31679C4.01509 9.70117 3.77051 9.94575 3.77051 10.2474V11.3444C3.77051 11.6461 4.01509 11.8906 4.31679 11.8906H8.12893C8.43063 11.8906 8.67521 11.6461 8.67521 11.3444V10.2474C8.67521 9.94575 8.43063 9.70117 8.12893 9.70117Z" stroke="#FF6F00"/>
</svg>

After

Width:  |  Height:  |  Size: 875 B

View File

@ -1036,7 +1036,7 @@ wxBoxSizer *StatusBasePanel::create_temp_control(wxWindow *parent)
sizer->Add(line, 0, wxEXPAND | wxLEFT | wxRIGHT, 12);
wxWindowID frame_id = wxWindow::NewControlId();
m_tempCtrl_chamber = new TempInput(parent, frame_id, TEMP_BLANK_STR, TEMP_BLANK_STR, wxString("monitor_frame_temp"), wxString("monitor_frame_temp"), wxDefaultPosition,
m_tempCtrl_chamber = new TempInput(parent, frame_id, TEMP_BLANK_STR, TEMP_BLANK_STR, wxString("monitor_frame_temp"), wxString("monitor_frame_temp_active"), wxDefaultPosition,
wxDefaultSize, wxALIGN_CENTER);
m_tempCtrl_chamber->SetReadOnly(true);
m_tempCtrl_chamber->SetMinTemp(nozzle_chamber_range[0]);