Code

gitk: Fix another collection of bugs
authorPaul Mackerras <paulus@samba.org>
Wed, 26 Dec 2007 12:03:43 +0000 (23:03 +1100)
committerPaul Mackerras <paulus@samba.org>
Wed, 26 Dec 2007 12:03:43 +0000 (23:03 +1100)
commitfc2a256f4a49732226b742762b628af6a8bd05d8
tree81fe3ee61ea75d2b2fd351d10350910799f2a49b
parent00abadb9dd5605b626defe61f271098b0040c76b
gitk: Fix another collection of bugs

* Fixed a bug that occasionally resulted in Tcl "can't use empty string
  as argument to incr" errors - rowofcommit was sometimes not calling
  update_arcrows when it needed to.

* Fixed a "no such element in array" error when removing a fake row,
  by unsetting currentid and selectedline in removerow if the row we
  are removing is the currently selected row.

* Made the "update commits" function always do "reread references".

* Made dodiffindex et al. remove the fake row(s) if necessary.

* Fixed a bug where clicking on a row in the graph display pane didn't
  account for horizontal scrolling of the pane.

* Started changing things that cached information based on row numbers
  to use commit IDs instead -- this converts the "select line" items
  that are put into the history list to use "select by ID" instead.

* Simplified redrawtags a bit, and fixed a bug where it would use the
  mainfont for working out how far it extends to the right in the graph
  display pane rather than the actual font (which might be bold).

* Fixed a bug where "reread references" wouldn't notice if the currently
  checked-out head had changed.

Signed-off-by: Paul Mackerras <paulus@samba.org>
gitk