mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-22 12:28:51 +00:00
bfec29f825
* Add shortcuts to toggle Console and clear its output * Update the docs Co-authored-by: Kārlis Seņko <karlis3p70l1ij@gmail.com>
14 lines
492 B
C
14 lines
492 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
|