Skip to content

Commit

Permalink
Revert "Fix parameters not updating on non active tabs (#5400)"
Browse files Browse the repository at this point in the history
This reverts commit 3f83d68.
  • Loading branch information
SoftFever committed May 20, 2024
1 parent 79ba045 commit 5914a3a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/slic3r/GUI/Tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1172,10 +1172,8 @@ void Tab::load_config(const DynamicPrintConfig& config)
// Reload current $self->{config} (aka $self->{presets}->edited_preset->config) into the UI fields.
void Tab::reload_config()
{
//if (m_active_page)
// m_active_page->reload_config();
for (auto page : m_pages)
page->reload_config();
if (m_active_page)
m_active_page->reload_config();
}

void Tab::update_mode()
Expand Down

0 comments on commit 5914a3a

Please sign in to comment.