This commit is contained in:
Patrick Klein 2025-03-30 23:52:53 +02:00 committed by GitHub
commit 3bfa40a21b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -26,6 +26,7 @@
#include <QMenu> #include <QMenu>
#include <QPainter> #include <QPainter>
#include <QScreen> #include <QScreen>
#include <QScrollBar>
#include <QShortcut> #include <QShortcut>
#include <QStyledItemDelegate> #include <QStyledItemDelegate>
#include <QWindow> #include <QWindow>
@ -595,3 +596,12 @@ bool EntryView::isColumnHidden(int logicalIndex)
{ {
return header()->isSectionHidden(logicalIndex) || header()->sectionSize(logicalIndex) == 0; return header()->isSectionHidden(logicalIndex) || header()->sectionSize(logicalIndex) == 0;
} }
void EntryView::wheelEvent(QWheelEvent* event)
{
if (event->modifiers() & Qt::ShiftModifier) {
horizontalScrollBar()->event(event);
} else {
QAbstractScrollArea::wheelEvent(event);
}
}

View file

@ -62,6 +62,7 @@ protected:
void focusInEvent(QFocusEvent* event) override; void focusInEvent(QFocusEvent* event) override;
void showEvent(QShowEvent* event) override; void showEvent(QShowEvent* event) override;
void startDrag(Qt::DropActions supportedActions) override; void startDrag(Qt::DropActions supportedActions) override;
void wheelEvent(QWheelEvent* event) override;
private slots: private slots:
void emitEntryActivated(const QModelIndex& index); void emitEntryActivated(const QModelIndex& index);