Skip to content

Commit

Permalink
Fix for #11636 - Rotation arrows missing Prusa Slice 2.7.0 Alpha 1 an…
Browse files Browse the repository at this point in the history
…d Beta 1
  • Loading branch information
YuSanka committed Nov 13, 2023
1 parent 4f18b6d commit 911de7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slic3r/GUI/GUI_ObjectManipulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 911de7b

Please sign in to comment.