Cursor highlight
This commit is contained in:
parent
38fb530b60
commit
53041c74a5
@ -63,7 +63,6 @@ defmodule Chessh.SSH.Client.Menu do
|
|||||||
%Chessh.SSH.Client.Game.State{player_session: player_session, game: game}}}
|
%Chessh.SSH.Client.Game.State{player_session: player_session, game: game}}}
|
||||||
end) ++
|
end) ++
|
||||||
[
|
[
|
||||||
{"Settings", {}},
|
|
||||||
{"Help", {}}
|
{"Help", {}}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
@ -130,7 +129,14 @@ defmodule Chessh.SSH.Client.Menu do
|
|||||||
fn {i, {option, _}} ->
|
fn {i, {option, _}} ->
|
||||||
[
|
[
|
||||||
ANSI.cursor(y + length(logo_lines) + i + 1, x),
|
ANSI.cursor(y + length(logo_lines) + i + 1, x),
|
||||||
if(i == selected, do: ANSI.format([:bright, :light_cyan, "+ #{option}"]), else: option)
|
if(i == selected,
|
||||||
|
do:
|
||||||
|
ANSI.format_fragment(
|
||||||
|
[:light_cyan, :bright, "> #{option} <", :reset],
|
||||||
|
true
|
||||||
|
),
|
||||||
|
else: option
|
||||||
|
)
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
) ++ [ANSI.home()]
|
) ++ [ANSI.home()]
|
||||||
|
Loading…
Reference in New Issue
Block a user