Menubar: Shorten the prompt to just run
Signed-off-by: Ignas Anikevicius (gns_ank) <anikevicius@gmail.com> Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
6b16d19c9b
commit
887b110f5d
|
@ -206,13 +206,13 @@ local function prompt_keypressed_callback(mod, key, comm)
|
||||||
if comm == "" and current_category then
|
if comm == "" and current_category then
|
||||||
current_category = nil
|
current_category = nil
|
||||||
current_item = previous_item
|
current_item = previous_item
|
||||||
return true, nil, "Run app: "
|
return true, nil, "Run: "
|
||||||
end
|
end
|
||||||
elseif key == "Escape" then
|
elseif key == "Escape" then
|
||||||
if current_category then
|
if current_category then
|
||||||
current_category = nil
|
current_category = nil
|
||||||
current_item = previous_item
|
current_item = previous_item
|
||||||
return true, nil, "Run app: "
|
return true, nil, "Run: "
|
||||||
end
|
end
|
||||||
elseif key == "Home" then
|
elseif key == "Home" then
|
||||||
current_item = 1
|
current_item = 1
|
||||||
|
|
Loading…
Reference in New Issue