1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:25:08 +00:00

LibGUI: Remove debug spam when resizing table columns

This commit is contained in:
Andreas Kling 2020-02-22 21:26:40 +01:00
parent a731ccd4a0
commit a406a8c7d2

View file

@ -269,7 +269,6 @@ void AbstractTableView::mousemove_event(MouseEvent& event)
auto& column_data = this->column_data(m_resizing_column);
if (column_data.width != new_width) {
column_data.width = new_width;
dbg() << "New column width: " << new_width;
update_content_size();
update();
}