1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

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

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();