From: Pratyush Yadav Date: Fri, 13 Sep 2019 20:49:38 +0000 (+0530) Subject: Merge branch 'bw/commit-scrollbuffer' X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/6c8ec8c30a134a24f90cccae87d33e71a61d4f5b?hp=acfa495519d7c12cfafe1c0e52fdac40f5e41032 Merge branch 'bw/commit-scrollbuffer' Add a scrollbar at the bottom of the commit message buffer. * bw/commit-scrollbuffer: git-gui: add horizontal scrollbar to commit buffer --- diff --git a/git-gui.sh b/git-gui.sh index c7d9103f00..8ecb98b09b 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -3369,10 +3369,16 @@ ttext $ui_comm -background white -foreground black \ -relief sunken \ -width $repo_config(gui.commitmsgwidth) -height 9 -wrap none \ -font font_diff \ + -xscrollcommand {.vpane.lower.commarea.buffer.frame.sbx set} \ -yscrollcommand {.vpane.lower.commarea.buffer.frame.sby set} +${NS}::scrollbar .vpane.lower.commarea.buffer.frame.sbx \ + -orient horizontal \ + -command [list $ui_comm xview] ${NS}::scrollbar .vpane.lower.commarea.buffer.frame.sby \ + -orient vertical \ -command [list $ui_comm yview] +pack .vpane.lower.commarea.buffer.frame.sbx -side bottom -fill x pack .vpane.lower.commarea.buffer.frame.sby -side right -fill y pack $ui_comm -side left -fill y pack .vpane.lower.commarea.buffer.header -side top -fill x