Resync the device status pages

This commit is contained in:
SoftFever
2026-07-17 08:30:22 +08:00
parent 5e95aca42d
commit 80d3c3908d
8 changed files with 145 additions and 19 deletions

View File

@@ -541,6 +541,20 @@ void MonitorPanel::jump_to_LiveView()
m_status_info_panel->get_media_play_ctrl()->jump_to_play();
}
void MonitorPanel::jump_to_Rack()
{
if (!this->IsShown()) {
return;
}
auto page = m_tabpanel->GetCurrentPage();
if (page && page != m_status_info_panel) {
m_tabpanel->SetSelection(PT_STATUS);
}
m_status_info_panel->jump_to_Rack();
}
void MonitorPanel::update_network_version_footer()
{
std::string binary_version = Slic3r::NetworkAgent::get_version();