Nicer statusbar texts when hinting

This commit is contained in:
Florian Bruhin 2014-04-22 09:41:43 +02:00
parent 233289228b
commit fec353809b

View File

@ -362,7 +362,18 @@ class HintManager(QObject):
if not visible_elems:
message.error("No elements found.")
return
message.text("Following hint...")
texts = {
"normal": "Follow hint...",
"tab": "Follow hint in new tab...",
"bgtab": "Follow hint in background tab...",
"yank": "Yank hint to clipboard...",
"yank_primary": "Yank hint to primary selection...",
"cmd": "Set hint in commandline...",
"cmd_tab": "Set hint in commandline as new tab...",
"cmd_bgtab": "Set hint in commandline as background tab...",
"rapid": "Follow hint (rapid mode)...",
}
message.text(texts[target])
strings = self._hint_strings(visible_elems)
for e, string in zip(visible_elems, strings):
label = self._draw_label(e, string)