From 911de7b2b12abc0b83993e7e78feb421d98e9efe Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 13 Nov 2023 16:04:03 +0100 Subject: [PATCH] Fix for #11636 - Rotation arrows missing Prusa Slice 2.7.0 Alpha 1 and Beta 1 --- src/slic3r/GUI/GUI_ObjectManipulation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp index 39f614654b..ba5cba935f 100644 --- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp +++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp @@ -1266,14 +1266,14 @@ ManipulationEditor::ManipulationEditor(ObjectManipulation* parent, e.Skip(); }, this->GetId()); - this->Bind(wxEVT_SET_FOCUS, [this, parent](wxFocusEvent& e) + this->GetTextCtrl()->Bind(wxEVT_SET_FOCUS, [this, parent](wxFocusEvent& e) { parent->set_focused_editor(this); // needed to show the visual hints in 3D scene wxGetApp().plater()->canvas3D()->handle_sidebar_focus_event(m_full_opt_name, true); e.Skip(); - }, this->GetId()); + }); this->Bind(wxEVT_CHAR, ([this](wxKeyEvent& event) {