mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
more extensive canvas debug message for canvas-enter-leave tracing
This commit is contained in:
parent
79b9a044b8
commit
d816c225a4
1 changed files with 2 additions and 2 deletions
|
|
@ -387,9 +387,9 @@ GtkCanvas::pick_current_item (Duple const & point, int state)
|
||||||
if (DEBUG_ENABLED(PBD::DEBUG::CanvasEnterLeave)) {
|
if (DEBUG_ENABLED(PBD::DEBUG::CanvasEnterLeave)) {
|
||||||
for (vector<Item const*>::const_iterator it = items.begin(); it != items.end(); ++it) {
|
for (vector<Item const*>::const_iterator it = items.begin(); it != items.end(); ++it) {
|
||||||
#ifdef CANVAS_DEBUG
|
#ifdef CANVAS_DEBUG
|
||||||
std::cerr << "\tItem " << (*it)->whatami() << '/' << (*it)->name << std::endl;
|
std::cerr << "\tItem " << (*it)->whatami() << '/' << (*it)->name << " ignore events ? " << (*it)->ignore_events() << " vis ? " << (*it)->visible() << std::endl;
|
||||||
#else
|
#else
|
||||||
std::cerr << "\tItem " << (*it)->whatami() << std::endl;
|
std::cerr << "\tItem " << (*it)->whatami() << '/' << " ignore events ? " << (*it)->ignore_events() << " vis ? " << (*it)->visible() << std::endl;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue