Added debug output to test event handling sequence between Objects List and Object Manipulator fields

This commit is contained in:
Enrico Turri 2019-01-30 12:18:01 +01:00
parent 883e09fbcd
commit fd65489c11
2 changed files with 7 additions and 0 deletions
src/slic3r/GUI

View file

@ -66,6 +66,9 @@ ObjectList::ObjectList(wxWindow* parent) :
// describe control behavior
Bind(wxEVT_DATAVIEW_SELECTION_CHANGED, [this](wxEvent& event) {
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
std::cout << "SELECTION_CHANGED" << std::endl;
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
selection_changed();
#ifndef __WXMSW__
set_tooltip_for_item(get_mouse_position_in_control());