Skip to content

Commit 299ae39

Browse files
committed
Layout changes
1 parent 295194a commit 299ae39

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

EasyKey.git/ezk-git-functions.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,11 @@ function interactiveStage () {
257257
}
258258

259259
function changeBranch () {
260-
git branch --all
261-
echo "Which branch?"
262-
read bname
263-
git checkout $bname
260+
git branch --all
261+
echo "Which branch?"
262+
read bname
263+
[ "${bname}" = "" ] && waitonexit && return
264+
git checkout $bname
264265
}
265266

266267
function fetchAll () {

shellmenu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ actualmenu="EasyKey.shellmenu"
2323
actualsubmenuname="Your commands:"
2424
menuHeadingFGClr="$clrWhite"
2525
menuHeadingBGClr="$clrBlue"
26-
submenuFGClr="$clrCyan"
27-
submenuBGClr="$clrBlack"
26+
submenuFGClr="$clrWhite"
27+
submenuBGClr="$clrPurple"
2828
delimiter=⊕
2929
formattedTop=""
3030
formattedBottom=""

0 commit comments

Comments
 (0)