summaryrefslogtreecommitdiff
path: root/git-gui
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2006-11-13 19:37:41 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2006-11-13 19:37:41 (GMT)
commita37eee4406ff965fda4d234759aa58526657cbe3 (patch)
tree947207adac50485d049a2f4ec588d221c55d9513 /git-gui
parent7d0d289e457eb643b8638b6385a0ce056f1f5a97 (diff)
downloadgit-a37eee4406ff965fda4d234759aa58526657cbe3.zip
git-a37eee4406ff965fda4d234759aa58526657cbe3.tar.gz
git-a37eee4406ff965fda4d234759aa58526657cbe3.tar.bz2
git-gui: Narrow the no differences information message.
On Mac OS X the no differences informational message was linewrapped at the wrong points due to the limited width of the system dialog, yet the LFs embedded in the message (where I linewrapped it manually) were also being honored. This resulted in a very difficult to read paragraph of text. So this narrows the text down by another 10 columns or so, making it more readable. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'git-gui')
-rwxr-xr-xgit-gui16
1 files changed, 9 insertions, 7 deletions
diff --git a/git-gui b/git-gui
index b8ebe31..6b8d25e 100755
--- a/git-gui
+++ b/git-gui
@@ -475,13 +475,15 @@ proc handle_empty_diff {} {
[short_path $path] has no changes.
-The modification date of this file was updated by another
-application and you currently have the Trust File Modification
-Timestamps option enabled, so Git did not automatically detect
-that there are no content differences in this file.
-
-This file will now be removed from the modified files list, to
-prevent possible confusion.
+The modification date of this file was updated
+by another application and you currently have
+the Trust File Modification Timestamps option
+enabled, so Git did not automatically detect
+that there are no content differences in this
+file.
+
+This file will now be removed from the modified
+files list, to prevent possible confusion.
"
if {[catch {exec git update-index -- $path} err]} {
error_popup "Failed to refresh index:\n\n$err"