Skip to content

Commit 4ce5b0b

Browse files
committed
Fix other minor things
1 parent 23968f1 commit 4ce5b0b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/gui/Src/Gui/ShortcutsDialog.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ShortcutsDialog::ShortcutsDialog(QWidget* parent) : QDialog(parent), ui(new Ui::
1212

1313
// x64 has no model-view-controler pattern
1414
QStringList tblHeader;
15-
tblHeader << tr("Instruction") << tr("Shortcut");
15+
tblHeader << tr("Action") << tr("Shortcut");
1616

1717
currentRow = 0;
1818

@@ -54,7 +54,8 @@ void ShortcutsDialog::showShortcutsFiltered(const QString & actionName)
5454
ui->tblShortcuts->setItem(row, 1, shortcutKey);
5555
row++;
5656
}
57-
ui->tblShortcuts->setSortingEnabled(true);}
57+
ui->tblShortcuts->setSortingEnabled(true);
58+
}
5859

5960
void ShortcutsDialog::filterShortcutsByName(const QString & nameFilter, QMap<QString, Configuration::Shortcut> & mapToFill)
6061
{

src/gui/Src/Gui/ShortcutsDialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<item>
2222
<widget class="QLineEdit" name="filterEdit">
2323
<property name="placeholderText">
24-
<string>Instruction name filter</string>
24+
<string>Action filter</string>
2525
</property>
2626
</widget>
2727
</item>

0 commit comments

Comments
 (0)