Skip to content

Commit 3253b5d

Browse files
committed
Merge bitcoin#17096: gui: rename debug window
44f15cf gui: renamed 'debug window' to 'node window' (Zero) Pull request description: **Edit**: I have now limited the change in this PR to only renaming the window title from `Debug Window` to `Node Window`. Check [this comment](bitcoin#17096 (comment)) for more details. This PR is in response to bitcoin#17082, which aims to rename the `Debug window` title to a more user friendly term; `Node window`. Closes bitcoin#17082 ACKs for top commit: hebasto: ACK 44f15cf, tested on Linux Mint 19.3: theStack: ACK bitcoin@44f15cf, tested on Linux (Lubuntu 16.04): Tree-SHA512: 9fc73f2e67badb38525c550ce4c313288858b3fde30ef17fee85230be5bf31cf94408c699265b5e1256dfed60f8d04f48927d9b2831ba9f25498b98e6fa7180f
2 parents 36ded99 + 44f15cf commit 3253b5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/qt/bitcoingui.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ void BitcoinGUI::createActions()
318318
verifyMessageAction = new QAction(tr("&Verify message..."), this);
319319
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses"));
320320

321-
openRPCConsoleAction = new QAction(tr("&Debug window"), this);
322-
openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console"));
321+
openRPCConsoleAction = new QAction(tr("Node window"), this);
322+
openRPCConsoleAction->setStatusTip(tr("Open node debugging and diagnostic console"));
323323
// initially disable the debug window menu item
324324
openRPCConsoleAction->setEnabled(false);
325325
openRPCConsoleAction->setObjectName("openRPCConsoleAction");

src/qt/forms/debugwindow.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Debug window</string>
14+
<string>Node window</string>
1515
</property>
1616
<layout class="QVBoxLayout" name="verticalLayout_2">
1717
<item>

0 commit comments

Comments
 (0)