ui: implement smooth scrolling across all listing views

Signed-off-by: Işık <kimurathankurai@gmail.com>
This commit is contained in:
Işık 2026-02-14 18:26:13 +03:00
parent 232e9fde09
commit 44eb2dc290
No known key found for this signature in database
23 changed files with 61 additions and 1 deletions

View file

@ -35,6 +35,7 @@ ModListView::ModListView(QWidget* parent) : QTreeView(parent)
setDragEnabled(true);
setDragDropMode(QAbstractItemView::DropOnly);
viewport()->setAcceptDrops(true);
setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
}
void ModListView::setModel(QAbstractItemModel* model)