summaryrefslogtreecommitdiff
path: root/lib/blame.tcl
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-06-02 21:15:56 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2007-06-06 05:26:51 (GMT)
commitdebcd0fd02bda82e3c81e6739bcb26135ac00b85 (patch)
tree49673c4bc41a1971f80c9674804a7228ce711e32 /lib/blame.tcl
parentfc816d7b857a5033982b421a384f7b2d932f57e6 (diff)
downloadgit-debcd0fd02bda82e3c81e6739bcb26135ac00b85.zip
git-debcd0fd02bda82e3c81e6739bcb26135ac00b85.tar.gz
git-debcd0fd02bda82e3c81e6739bcb26135ac00b85.tar.bz2
git-gui: Display the "Loading annotation..." message in italic
If the user clicks on a line region that we haven't yet received an annotation for from git-blame we show them "Loading annotation". But I don't want the user to confuse this loading message with a commit whose first line is "Loading annotation" and think we messed up our display somehow. Since we never use italics for anything else, I'm going with the idea that italic slant can be used to show data is missing/elided out at the time being. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib/blame.tcl')
-rw-r--r--lib/blame.tcl5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl
index 0531450..0641ea6 100644
--- a/lib/blame.tcl
+++ b/lib/blame.tcl
@@ -194,6 +194,9 @@ constructor new {i_commit i_path} {
-xscrollcommand [list $w.file_pane.cm.sbx set] \
-yscrollcommand [list $w.file_pane.cm.sby set] \
-font font_diff
+ $w_cviewer tag conf still_loading \
+ -font font_uiitalic \
+ -justify center
$w_cviewer tag conf header_key \
-tabs {3c} \
-background $active_color \
@@ -624,7 +627,7 @@ method _showcommit {lno} {
set dat [lindex $amov_data $lno]
if {$dat eq {}} {
set cmit {}
- $w_cviewer insert end "Loading annotation..."
+ $w_cviewer insert end "Loading annotation..." still_loading
} else {
set cmit [lindex $dat 0]
set file [lindex $dat 1]