One more fix to updates of the "Slice now" and "Export G-code buttons"

- "Sliced now" button is hidden when "Background process" is selected
- deleted extra enable_buttons() function call
This commit is contained in:
YuSanka 2018-12-04 12:30:47 +01:00
parent 96e14b5d3b
commit 129c35b714
3 changed files with 3 additions and 5 deletions
src/slic3r/GUI

View file

@ -766,7 +766,9 @@ void MainFrame::on_value_changed(wxCommandEvent& event)
// Update the UI based on the current preferences.
void MainFrame::update_ui_from_settings()
{
m_menu_item_reslice_now->Enable(wxGetApp().app_config->get("background_processing") == "1");
bool bp_on = wxGetApp().app_config->get("background_processing") == "1";
m_menu_item_reslice_now->Enable(bp_on);
m_plater->sidebar().show_button(baReslice, !bp_on);
if (m_plater)
m_plater->update_ui_from_settings();
for (auto tab: wxGetApp().tabs_list)