From 45b6c99353c062558d04a3d453008cd0501dfd8d Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 29 May 2018 20:55:43 +0200 Subject: [PATCH] print_info_box is correct placed on right_panel --- lib/Slic3r/GUI/Plater.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm index 6649e491a..98c9a9466 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -529,8 +529,9 @@ sub new { if ($info_sizer->IsShown(2) != $_[0]) { Slic3r::GUI::set_show_print_info($_[0]); return if (wxTheApp->{app_config}->get("view_mode") eq "simple"); - $info_sizer->Show(2, $_[0]); - $self->{right_panel}->Layout + $info_sizer->Show(2, $_[0]); + $self->Layout; + $self->{right_panel}->Refresh; } }; # Show the box initially, let it be shown after the slicing is finished.