We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50a64ef commit f326825Copy full SHA for f326825
src/ShortcutsDialog.cpp
@@ -42,10 +42,11 @@ void ShortcutsDialog::setupUI() {
42
43
// General Actions
44
QList<QPair<QString, QString>> generalShortcuts = {
45
- {tr("Ctrl+P"), tr("Pick color from screen")},
46
- {tr("Ctrl+G"), tr("Open Gradient Maker")},
47
{tr("Ctrl+C"), tr("Copy current color")},
+ {tr("Ctrl+P"), tr("Pick color from screen")},
48
{tr("Ctrl+R"), tr("Generate random color")},
+ {tr("Ctrl+G"), tr("Open Gradient Maker")},
49
+ {tr("Ctrl+Shift+C"), tr("Open Contrast Checker")},
50
{tr("Ctrl+K"), tr("Open this Keyboard Shortcuts dialog")}
51
};
52
addShortcutSection(scrollLayout, tr("General"), generalShortcuts);
0 commit comments