Skip to content

Commit f326825

Browse files
committed
feat: update keyboard shortcuts in ShortcutsDialog for improved accessibility
1 parent 50a64ef commit f326825

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/ShortcutsDialog.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ void ShortcutsDialog::setupUI() {
4242

4343
// General Actions
4444
QList<QPair<QString, QString>> generalShortcuts = {
45-
{tr("Ctrl+P"), tr("Pick color from screen")},
46-
{tr("Ctrl+G"), tr("Open Gradient Maker")},
4745
{tr("Ctrl+C"), tr("Copy current color")},
46+
{tr("Ctrl+P"), tr("Pick color from screen")},
4847
{tr("Ctrl+R"), tr("Generate random color")},
48+
{tr("Ctrl+G"), tr("Open Gradient Maker")},
49+
{tr("Ctrl+Shift+C"), tr("Open Contrast Checker")},
4950
{tr("Ctrl+K"), tr("Open this Keyboard Shortcuts dialog")}
5051
};
5152
addShortcutSection(scrollLayout, tr("General"), generalShortcuts);

0 commit comments

Comments
 (0)