diff --git a/Userland/Applications/PixelPaint/Image.cpp b/Userland/Applications/PixelPaint/Image.cpp index a6af48188e..5832fefdd7 100644 --- a/Userland/Applications/PixelPaint/Image.cpp +++ b/Userland/Applications/PixelPaint/Image.cpp @@ -265,6 +265,8 @@ ErrorOr Image::restore_snapshot(Image const& snapshot) if (!layer_selected) select_layer(&layer(0)); + m_size = snapshot.size(); + did_change_rect(); did_modify_layer_stack(); return {}; }