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.
This commit is contained in:
Humdinger 2014-12-18 17:17:15 +01:00
parent 57f933d348
commit ca7c20e8d7

View File

@ -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)