Skip to content

Commit b265ffe

Browse files
committed
Merge #15023: GUI: Restore RPC Console to non-wallet tray icon menu
f33efa8 GUI: Restore RPC Console to non-wallet tray icon menu (Luke Dashjr) Pull request description: #14383 moved the debug window's menu position, to make it conditional on wallet mode. The rationale given was to match the behaviour of the 'Help' menu. #14573 replaced the 'Help' menu's conditional debug window with an unconditional list of items in the new 'Window' menu. This PR reverts the no-longer-applicable part of #14383, putting the debug window back on the tray menu unconditionally, and in the position it previously had. ACKs for top commit: jonasschnelli: Tested ACK f33efa8 - the debug window is also accessible from the menu (though directly the subpages which counts IMO). Tree-SHA512: c04a588fed37a8c31cb413baaa346e3c1c18724f9b40d64b8528c517f65290930d577bccf0a794180e968e84d3c52e9fa3fdc8a40bbc5fe3418eaddd73481271
2 parents bc7e721 + f33efa8 commit b265ffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/bitcoingui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,9 +747,9 @@ void BitcoinGUI::createTrayIconMenu()
747747
trayIconMenu->addAction(signMessageAction);
748748
trayIconMenu->addAction(verifyMessageAction);
749749
trayIconMenu->addSeparator();
750-
trayIconMenu->addAction(openRPCConsoleAction);
751750
}
752751
trayIconMenu->addAction(optionsAction);
752+
trayIconMenu->addAction(openRPCConsoleAction);
753753
#ifndef Q_OS_MAC // This is built-in on macOS
754754
trayIconMenu->addSeparator();
755755
trayIconMenu->addAction(quitAction);

0 commit comments

Comments
 (0)