summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPratyush Yadav <me@yadavpratyush.com>2019-12-19 19:54:05 (GMT)
committerPratyush Yadav <me@yadavpratyush.com>2019-12-19 19:54:05 (GMT)
commit23cbe427c44645a3ab0449919e55bade5eb264bc (patch)
tree93d8d826eaafbef36e83f1e3685792a8fd337b1e
parentd32e065a9179408db8d29354171258ca183b9443 (diff)
parent1e1ccbfdd3100a1bb656b11f973381ce4b69decf (diff)
downloadgit-23cbe427c44645a3ab0449919e55bade5eb264bc.zip
git-23cbe427c44645a3ab0449919e55bade5eb264bc.tar.gz
git-23cbe427c44645a3ab0449919e55bade5eb264bc.tar.bz2
Merge branch 'py/console-close-esc'
Allow closing console window with Escape once the command is completed. * py/console-close-esc: git-gui: allow closing console window with Escape
-rw-r--r--lib/console.tcl2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/console.tcl b/lib/console.tcl
index 1f3248f..bb6b9c8 100644
--- a/lib/console.tcl
+++ b/lib/console.tcl
@@ -203,6 +203,8 @@ method done {ok} {
focus $w.ok
}
}
+
+ bind $w <Key-Escape> "destroy $w;break"
}
method _sb_set {sb orient first last} {