mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-22 06:57:46 +00:00
yuzu/main: Improve menubar access keys
Adds a unique access key to each action within each menu. A few actions already had their own access key, so those were untouched.
This commit is contained in:
parent
54069afbdb
commit
662c4a68f6
4 changed files with 38 additions and 38 deletions
|
@ -48,7 +48,7 @@ private:
|
|||
|
||||
MicroProfileDialog::MicroProfileDialog(QWidget* parent) : QWidget(parent, Qt::Dialog) {
|
||||
setObjectName(QStringLiteral("MicroProfile"));
|
||||
setWindowTitle(tr("MicroProfile"));
|
||||
setWindowTitle(tr("&MicroProfile"));
|
||||
resize(1000, 600);
|
||||
// Remove the "?" button from the titlebar and enable the maximize button
|
||||
setWindowFlags((windowFlags() & ~Qt::WindowContextHelpButtonHint) |
|
||||
|
|
|
@ -457,7 +457,7 @@ void WaitTreeModel::InitItems() {
|
|||
thread_items = WaitTreeItem::MakeThreadItemList();
|
||||
}
|
||||
|
||||
WaitTreeWidget::WaitTreeWidget(QWidget* parent) : QDockWidget(tr("Wait Tree"), parent) {
|
||||
WaitTreeWidget::WaitTreeWidget(QWidget* parent) : QDockWidget(tr("&Wait Tree"), parent) {
|
||||
setObjectName(QStringLiteral("WaitTreeWidget"));
|
||||
view = new QTreeView(this);
|
||||
view->setHeaderHidden(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue