From: Jakub Narebski <hidden> Date: 2016-06-15 22:42:30
In gitk from the current 'next' branch, post git version 1.4.0
(blob ba4644f) scrollbar for lower pane, i.e. for commitdiff and files
(Comments) views extends past the bottom of the gitk window. Therefore
I cannnot see lower part of commit diff if it is larger than window height.
gitk window has height lower than 700.
The upper pane, i.e. history graph scrollbar is correct, and works as it
should.
This is regression from git 1.3.0, where gitk works correctly.
Below ascii art trying to describe situation.
_ _ _
^ .. upper scrollbar arrow .... ^ ^
# # |
# .... position indicator ..... # |
| | |
| | scrolling past window edge -> #
| bottom of gitk window --> = =
v <-- no lower scrollbar arrow
= <-- bottom of gitk window
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
From: Edgar Toernig <hidden> Date: 2016-06-15 22:42:30
Jakub Narebski wrote:
In gitk from the current 'next' branch, post git version 1.4.0
(blob ba4644f) scrollbar for lower pane, i.e. for commitdiff and files
(Comments) views extends past the bottom of the gitk window. Therefore
I cannnot see lower part of commit diff if it is larger than window height.
Yes, and the search field at the bottom is invisible too. Removing
line 431:
.ctop conf -width $geometry(width) -height $geometry(height)
seems to fix it and the window still gets the right size.
Ciao, ET.
From: Alex Riesen <hidden> Date: 2016-06-15 22:42:30
On 6/22/06, Edgar Toernig [off-list ref] wrote:
Jakub Narebski wrote:
quoted
In gitk from the current 'next' branch, post git version 1.4.0
(blob ba4644f) scrollbar for lower pane, i.e. for commitdiff and files
(Comments) views extends past the bottom of the gitk window. Therefore
I cannnot see lower part of commit diff if it is larger than window height.
Yes, and the search field at the bottom is invisible too. Removing
line 431:
.ctop conf -width $geometry(width) -height $geometry(height)
seems to fix it and the window still gets the right size.
No, it does not. It gets the default geometry, not the one it had last time.
From: Jakub Narebski <hidden> Date: 2016-06-15 22:42:30
Alex Riesen wrote:
On 6/22/06, Edgar Toernig [off-list ref] wrote:
quoted
Jakub Narebski wrote:
quoted
In gitk from the current 'next' branch, post git version 1.4.0
(blob ba4644f) scrollbar for lower pane, i.e. for commitdiff and files
(Comments) views extends past the bottom of the gitk window. Therefore
I cannnot see lower part of commit diff if it is larger than
window height.
Yes, and the search field at the bottom is invisible too. Removing
line 431:
.ctop conf -width $geometry(width) -height $geometry(height)
seems to fix it and the window still gets the right size.
No, it does not. It gets the default geometry, not the one it had last time.
Now I see. It is the case when I used gitk from a computer with a desktop
with larger screen height, then on computer with screen height smaller than
gitk height was I had mentioned problem.
Workaround for now is to delete old geometry info from ~/.gitk file
(or just delete whole file).
I don't know Tcl/Tk to make proper fix, i.e. check if restored size is not
larger than available screen size, and use min(saved size, screen size).
Another improvement would be to save the fact that gitk window is maximized
as a symbol, e.g. as equivalent of
set geometry(height) screen(height)
in ~/.gitk
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
From: Jakub Narebski <hidden> Date: 2016-06-15 22:42:30
It looks like gitk incorrectly saves the geometry in ~/.gitk
I have to remove it before running gitk (well, it would be
enough to remove geometry section).
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git