Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/slic3r/GUI/Plater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16935,6 +16935,12 @@ void Plater::priv::update_after_undo_redo(const UndoRedo::Snapshot& snapshot, bo

wxGetApp().obj_list()->update_after_undo_redo();

// #11211: the custom bed (logo) texture is not part of the undo snapshot, so it is lost
// when the plates are rebuilt on deserialize. Re-apply it from the (undo-independent)
// config. set_bed_shape() only re-sets the logo filename when the bed shape itself is
// unchanged, so this is cheap in the common case.
q->set_bed_shape();

if (wxGetApp().get_mode() == comSimple && model_has_advanced_features(this->model)) {
// If the user jumped to a snapshot that require user interface with advanced features, switch to the advanced mode without asking.
// There is a little risk of surprising the user, as he already must have had the advanced or advanced mode active for such a snapshot to be taken.
Expand Down
Loading