← Back to team overview

gnome-split-team team mailing list archive

[Branch ~gnome-split-team/gnome-split/mainline] Rev 271: Fix text not showing in the progress bar.

 

------------------------------------------------------------
revno: 271
committer: Guillaume Mazoyer <respawneral@xxxxxxxxx>
branch nick: gnome-split
timestamp: Sat 2012-02-04 05:41:15 +0100
message:
  Fix text not showing in the progress bar.
modified:
  src/org/gnome/split/gtk/widget/base/ProgressWidget.java


--
lp:gnome-split
https://code.launchpad.net/~gnome-split-team/gnome-split/mainline

Your team GNOME Split developers is subscribed to branch lp:gnome-split.
To unsubscribe from this branch go to https://code.launchpad.net/~gnome-split-team/gnome-split/mainline/+edit-subscription
=== modified file 'src/org/gnome/split/gtk/widget/base/ProgressWidget.java'
--- src/org/gnome/split/gtk/widget/base/ProgressWidget.java	2011-01-04 12:56:24 +0000
+++ src/org/gnome/split/gtk/widget/base/ProgressWidget.java	2012-02-04 04:41:15 +0000
@@ -44,6 +44,9 @@
         // Add the progress bar
         progress = new ProgressBar();
         this.packStart(progress, false, false, 0);
+
+        // Show the text in the progress bar
+        progress.setShowText(true);
     }
 
     @Override