We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8031960 commit 8a91b90Copy full SHA for 8a91b90
Libraries/LibGUI/GTableView.cpp
@@ -214,10 +214,9 @@ void GTableView::mousemove_event(GMouseEvent& event)
214
return;
215
}
216
217
- auto adjusted_position = this->adjusted_position(event.position());
218
if (event.buttons() == 0) {
219
for (int i = 0; i < model()->column_count(); ++i) {
220
- if (column_resize_grabbable_rect(i).contains(adjusted_position)) {
+ if (column_resize_grabbable_rect(i).contains(event.position())) {
221
window()->set_override_cursor(GStandardCursor::ResizeHorizontal);
222
223
0 commit comments