1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 00:55:06 +00:00

LibGUI: Remove debug spam in AbstractView::did_update_model()

This commit is contained in:
Andreas Kling 2020-04-12 14:19:44 +02:00
parent 8e4751a963
commit 5390d53a80

View file

@ -64,9 +64,6 @@ void AbstractView::did_update_model(unsigned flags)
stop_editing();
m_edit_index = {};
m_hovered_index = {};
dbg() << "did_update_model, flags=" << flags;
dump_backtrace();
if (!model() || (flags & GUI::Model::InvalidateAllIndexes)) {
selection().clear();
} else {