FileManager: Remove "on activation" debug spam

This commit is contained in:
TheFightingCatfish 2021-08-11 23:42:03 +08:00 committed by Andreas Kling
parent 355c2eef57
commit ce66c40160
Notes: sideshowbarker 2024-07-18 05:16:07 +09:00

View file

@ -94,7 +94,7 @@ void DirectoryView::handle_activation(GUI::ModelIndex const& index)
{
if (!index.is_valid())
return;
dbgln("on activation: {},{}, this={:p}, m_model={:p}", index.row(), index.column(), this, m_model.ptr());
auto& node = this->node(index);
auto path = node.full_path();