Port of 2afdc66dfb and dbad87fb42 into tech ENABLE_PREVIEW_LAYOUT

This commit is contained in:
enricoturri1966 2021-10-06 15:49:25 +02:00
parent 7c01817ead
commit 077abe117a

View File

@ -4276,9 +4276,15 @@ void GCodeViewer::render_legend(float& legend_height)
unsigned int new_flags = set_flag(flags, flag, !active);
set_options_visibility_from_flags(new_flags);
bool keep_first = m_sequential_view.current.first != m_sequential_view.global.first;
bool keep_last = m_sequential_view.current.last != m_sequential_view.global.last;
wxGetApp().plater()->get_current_canvas3D()->refresh_gcode_preview_render_paths(keep_first, keep_last);
const unsigned int diff_flags = flags ^ new_flags;
if (m_view_type == GCodeViewer::EViewType::Feedrate &&
(diff_flags & (1 << static_cast<unsigned int>(Preview::OptionType::Travel))) != 0)
wxGetApp().plater()->refresh_print();
else {
bool keep_first = m_sequential_view.current.first != m_sequential_view.global.first;
bool keep_last = m_sequential_view.current.last != m_sequential_view.global.last;
wxGetApp().plater()->get_current_canvas3D()->refresh_gcode_preview_render_paths(keep_first, keep_last);
}
wxGetApp().plater()->update_preview_moves_slider();
}