Skip to content

Commit

Permalink
Fix wheel scrolling of the main tableview
Browse files Browse the repository at this point in the history
Signed-off-by: Viktor Kopp <[email protected]>
  • Loading branch information
vifactor committed Nov 17, 2024
1 parent 77c0efc commit 95d1538
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dlttableview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ void DltTableView::wheelEvent(QWheelEvent *event)
auto val = event->angleDelta().y();
emit changeFontSize((0 < val) - (val < 0));
event->accept();
} else {
QTableView::wheelEvent(event);
}
}

Expand Down

0 comments on commit 95d1538

Please sign in to comment.