mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 13:25:27 +00:00
12 lines
339 B
C
12 lines
339 B
C
|
#ifndef WIDGETSHORTCUTS_H
|
||
|
#define WIDGETSHORTCUTS_H
|
||
|
|
||
|
static const QHash<QString, QKeySequence> widgetShortcuts = {
|
||
|
{ "StringsWidget", Qt::SHIFT + Qt::Key_F12 },
|
||
|
{ "GraphWidget", Qt::SHIFT + Qt::Key_G },
|
||
|
{ "ImportsWidget", Qt::SHIFT + Qt::Key_I },
|
||
|
{ "ExportsWidget", Qt::SHIFT + Qt::Key_E }
|
||
|
};
|
||
|
|
||
|
#endif
|