Fri, 01 Jul 2022 16:46:43 +0300
Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay
#include <QAction> #include "src/uiutilities.h" #include "src/settingseditor/keyboardshortcutseditor.h" KeyboardShortcutsEditor::KeyboardShortcutsEditor(QObject* subject, QObject* parent) : QAbstractTableModel{parent}, actions{uiutilities::collectActions(subject)} { } int KeyboardShortcutsEditor::rowCount(const QModelIndex&) const { return static_cast<int>(this->actions.size()); } int KeyboardShortcutsEditor::columnCount(const QModelIndex&) const { return 2; } QVariant KeyboardShortcutsEditor::data( const QModelIndex& index, int role) const { QAction* const action = this->actions[static_cast<std::size_t>(index.row())]; const Column column = static_cast<Column>(index.column()); switch(role) { case Qt::DisplayRole: switch (column) { case TitleColumn: return action->text(); case ShortcutColumn: return action->shortcut().toString(QKeySequence::NativeText); } break; } return {}; } QVariant KeyboardShortcutsEditor::headerData( int section, Qt::Orientation orientation, int role) const { if (orientation == Qt::Horizontal and role == Qt::DisplayRole) { switch (static_cast<Column>(section)) { case TitleColumn: return tr("Action"); case ShortcutColumn: return tr("Shortcut"); } } return {}; }