Wed, 25 May 2022 20:36:34 +0300
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
#pragma once #include <QWidget> #include <QAbstractTableModel> class KeyboardShortcutsEditor : public QAbstractTableModel { Q_OBJECT public: enum Column { TitleColumn, ShortcutColumn, }; explicit KeyboardShortcutsEditor(QObject* subject, QObject* parent = nullptr); int rowCount(const QModelIndex&) const override; int columnCount(const QModelIndex&) const override; QVariant data(const QModelIndex& index, int role) const override; QVariant headerData(int section, Qt::Orientation orientation, int role) const override; private: const QVector<QAction*> actions; };