From 3822ffa34507f4b745196adccde57681043e4a6f Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Tue, 10 Jun 2014 23:54:17 +0200 Subject: [PATCH] Shorten hint text. --- naja/widgets/info_area.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/naja/widgets/info_area.py b/naja/widgets/info_area.py index 915c6da..e6c1143 100644 --- a/naja/widgets/info_area.py +++ b/naja/widgets/info_area.py @@ -21,11 +21,11 @@ from naja import constants HINTS = [ - "Browse the tiles with {NORTH,SOUTH,EAST,WEST} keys.", - "Switch actions using TAB.", + "{NORTH,SOUTH,EAST,WEST} to browse tiles.", + "TAB to switch actions.", ] -HINT_LEGAL_MOVE = "\nPress {RETURN} to move and execute the action." +HINT_LEGAL_MOVE = "\n{RETURN} to act." class InfoAreaWidget(Widget): -- 2.34.1