mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-31 00:35:05 +00:00
11 lines
423 B
C
11 lines
423 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 },
|
|
{ "ConsoleWidget", Qt::CTRL + Qt::Key_QuoteLeft }, { "ConsoleWidgetAlternative", Qt::Key_Colon }
|
|
};
|
|
|
|
#endif
|