mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Merge pull request #11497 from vyuuui/debugger_assembler_ui
Built-in assembler for debugger interface
This commit is contained in:
@ -123,8 +123,10 @@ GameList::GameList(QWidget* parent) : QStackedWidget(parent), m_model(this)
|
||||
m_prefer_list = Settings::Instance().GetPreferredView();
|
||||
ConsiderViewChange();
|
||||
|
||||
const auto* zoom_in = new QShortcut(QKeySequence::ZoomIn, this);
|
||||
const auto* zoom_out = new QShortcut(QKeySequence::ZoomOut, this);
|
||||
auto* zoom_in = new QShortcut(QKeySequence::ZoomIn, this);
|
||||
auto* zoom_out = new QShortcut(QKeySequence::ZoomOut, this);
|
||||
zoom_in->setContext(Qt::WidgetWithChildrenShortcut);
|
||||
zoom_out->setContext(Qt::WidgetWithChildrenShortcut);
|
||||
|
||||
connect(zoom_in, &QShortcut::activated, this, &GameList::ZoomIn);
|
||||
connect(zoom_out, &QShortcut::activated, this, &GameList::ZoomOut);
|
||||
|
Reference in New Issue
Block a user