diff --git a/launcher/src/main/java/com/threerings/getdown/launcher/StatusPanel.java b/launcher/src/main/java/com/threerings/getdown/launcher/StatusPanel.java index 9e5d4c3..795cc4b 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/StatusPanel.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/StatusPanel.java @@ -262,13 +262,13 @@ public final class StatusPanel extends JComponent */ private void updateStatusLabel() { - String status = _status; + StringBuilder status = new StringBuilder(_status); if (!_displayError) { for (int ii = 0; ii < _statusDots; ii++) { - status += " ."; + status.append(" ."); } } - _newlab = createLabel(status, new Color(_ifc.statusText, true)); + _newlab = createLabel(status.toString(), new Color(_ifc.statusText, true)); // set the width of the label to the width specified int width = _ifc.status.width; if (width == 0) {