From 30d2f7033edcc9543680cae4ade28cce3a6b1ca9 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Wed, 4 Dec 2024 16:57:27 +0100 Subject: [PATCH] Minor GUI string change Console bar: Using "Run:" as label for the new popup menu with the recently executed commands fits better to the labels of the "Find:" and "Replace:" bars. --- src/ui/GenioWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/GenioWindow.cpp b/src/ui/GenioWindow.cpp index 7c54241d..f2db6b76 100644 --- a/src/ui/GenioWindow.cpp +++ b/src/ui/GenioWindow.cpp @@ -2557,7 +2557,7 @@ GenioWindow::_InitCommandRunToolbar() fRunGroup->ChangeIconSize(be_control_look->ComposeIconSize(kDefaultIconSize).Width()); } - fRunMenuField = new BMenuField("RecentMenuField", NULL, new BMenu(B_TRANSLATE("Recents"))); + fRunMenuField = new BMenuField("RecentMenuField", NULL, new BMenu(B_TRANSLATE("Run:"))); fRunMenuField->SetExplicitMaxSize(BSize(kFindReplaceOPSize, B_SIZE_UNSET)); fRunMenuField->SetExplicitMinSize(BSize(kFindReplaceOPSize, B_SIZE_UNSET));