Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2019-04-09 16:43:16 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-04-09 16:43:16 +0300
commit7aa6c1854f11a9db120d5894f4fdb91c47cd97c7 (patch)
treeafdcfd8f46f7c0c95bb8bb2cf4e443548f9ce38d
parent0889877e267b737f8ac44eb11624c2896b68a007 (diff)
Follow-up to af05e5fc2ca33b5a5ac054356a83987977f4fbde -> added missing #else
-rw-r--r--src/slic3r/GUI/GUI_ObjectList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp
index b5615f6f1..dc3909351 100644
--- a/src/slic3r/GUI/GUI_ObjectList.cpp
+++ b/src/slic3r/GUI/GUI_ObjectList.cpp
@@ -88,7 +88,7 @@ ObjectList::ObjectList(wxWindow* parent) :
// before the kill focus event handler on the object manipulator when changing selection in the list, invalidating the object
// manipulator cache with the following call to selection_changed()
wxGetApp().obj_manipul()->emulate_kill_focus();
-
+#else
// To avoid selection update from SetSelection() and UnselectAll() under osx
if (m_prevent_list_events)
return;