Skip to content

Commit 899366d

Browse files
committed
GTableView: Debug-log the current column width while resizing
This makes it easier to decide on a good initial width for a column.
1 parent eb3c197 commit 899366d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Libraries/LibGUI/GTableView.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ void GTableView::mousemove_event(GMouseEvent& event)
170170
auto& column_data = this->column_data(m_resizing_column);
171171
if (column_data.width != new_width) {
172172
column_data.width = new_width;
173+
dbg() << "New column width: " << new_width;
173174
update_content_size();
174175
update();
175176
}

0 commit comments

Comments
 (0)