From ca7c20e8d7bba09a5ccfc86eb936f925321c7205 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Thu, 18 Dec 2014 17:17:15 +0100 Subject: [PATCH] Terminal: move "Window title..." from "Edit" to "Settings" The menu item to set the "Window title..." makes more sense in the "Settings" menu. There you find other settings that only apply to the running session, like window size or text encoding. The "Edit" menu OTOH has only commands to deal with the contents in the Terminal, like copy, paste, find etc. --- src/apps/terminal/TermWindow.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/apps/terminal/TermWindow.cpp b/src/apps/terminal/TermWindow.cpp index 30dc6f9cf1..88762c70bb 100644 --- a/src/apps/terminal/TermWindow.cpp +++ b/src/apps/terminal/TermWindow.cpp @@ -514,13 +514,12 @@ TermWindow::_SetupMenu() .AddItem(B_TRANSLATE("Find next"), MENU_FIND_NEXT, 'G') .GetItem(fFindNextMenuItem) .SetEnabled(false) - .AddSeparator() - .AddItem(B_TRANSLATE("Window title" B_UTF8_ELLIPSIS), - kEditWindowTitle) .End() // Settings .AddMenu(B_TRANSLATE("Settings")) + .AddItem(B_TRANSLATE("Window title" B_UTF8_ELLIPSIS), + kEditWindowTitle) .AddItem(windowSize) .AddItem(fEncodingMenu) .AddItem(fFontSizeMenu)