From d1e8067dcee03f5e7bfc31e9437d07e8ab7de71f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Ker=C3=A4nen?= Date: Sun, 16 Mar 2014 08:57:23 +0200 Subject: [PATCH] UI|Client: Tweaks Reordered/reworded the 'help' command's output a little. --- doomsday/client/src/con_main.cpp | 8 ++++---- doomsday/client/src/ui/clientwindow.cpp | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doomsday/client/src/con_main.cpp b/doomsday/client/src/con_main.cpp index ec86d9c207..28259ee00f 100644 --- a/doomsday/client/src/con_main.cpp +++ b/doomsday/client/src/con_main.cpp @@ -1230,14 +1230,14 @@ D_CMD(Help) #ifdef __CLIENT__ LOG_SCR_MSG(_E(D) "Keys:" _E(.)) << TABBED(DENG2_CHAR_SHIFT_KEY "Esc", "Open the taskbar and console") + << TABBED("Tab", "Autocomplete the word at the cursor") + << TABBED(DENG2_CHAR_UP_DOWN_ARROW, "Move backwards/forwards through the input command history, or up/down one line inside a multi-line command") << TABBED("PgUp/Dn", "Scroll up/down in the history, or expand the history to full height") << TABBED(DENG2_CHAR_SHIFT_KEY "PgUp/Dn", "Jump to the top/bottom of the history") - << TABBED("F5", "Clear the console message history") << TABBED("Home", "Move the cursor to the start of the command line") << TABBED("End", "Move the cursor to the end of the command line") - << TABBED("Tab", "Attempt autocompletion of the last word on the input line") - << TABBED(DENG2_CHAR_UP_DOWN_ARROW, "Move backwards/forwards through the input command history, or up/down one line inside a multi-line command") - << TABBED(DENG2_CHAR_CONTROL_KEY "K", "Clear everything on the line right of the cursor position"); + << TABBED(DENG2_CHAR_CONTROL_KEY "K", "Clear everything on the line right of the cursor position") + << TABBED("F5", "Clear the console message history"); #endif LOG_SCR_MSG(_E(D) "Getting started:"); LOG_SCR_MSG(" " _E(>) "Enter " _E(b) "help (what)" _E(.) " for information about " _E(l) "(what)"); diff --git a/doomsday/client/src/ui/clientwindow.cpp b/doomsday/client/src/ui/clientwindow.cpp index 4e45e05acd..f87208f59f 100644 --- a/doomsday/client/src/ui/clientwindow.cpp +++ b/doomsday/client/src/ui/clientwindow.cpp @@ -196,6 +196,7 @@ DENG2_PIMPL(ClientWindow) style.rules().rule("gameselection.max.width"))) .setAnchorPoint(Vector2f(.5f, .5f)); gameSelMenu->filter().useInvertedStyle(); + gameSelMenu->filter().setOpacity(.9f); gameSelMenu->filter().rule() .setInput(Rule::Left, gameSelMenu->rule().left() + gameSelMenu->margins().left()) .setInput(Rule::Width, gameSelMenu->rule().width() - gameSelMenu->margins().width())