Plater: Add missing skeletons (un-typed for now)

This commit is contained in:
Vojtech Kral 2018-10-09 09:35:19 +02:00
parent dffae0aa12
commit 322e0a433c
3 changed files with 148 additions and 4 deletions
src/slic3r/GUI

View file

@ -62,7 +62,7 @@ ObjectList::ObjectList(wxWindow* parent) :
});
#else
// equivalent to wxEVT_CHOICE on __WXMSW__
m_objects_ctrl->Bind(wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, [this](wxDataViewEvent& e) { object_ctrl_item_value_change(e); });
Bind(wxEVT_DATAVIEW_ITEM_VALUE_CHANGED, [this](wxDataViewEvent& e) { object_ctrl_item_value_change(e); });
#endif //__WXMSW__
Bind(wxEVT_DATAVIEW_ITEM_BEGIN_DRAG, [this](wxDataViewEvent& e) {on_begin_drag(e); });