Skip to content

Commit

Permalink
RSV status label redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rider committed Oct 9, 2016
1 parent 21570fd commit 821da1c
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -1189,6 +1189,11 @@ public void setStatus(String status, boolean error)
status = "???"; //$NON-NLS-1$
}
statusLabel.setText(status);
if (error) {
statusLabel.setToolTipText(status);
} else {
statusLabel.setToolTipText(null);
}
}

public void updateStatusMessage()
Expand Down

0 comments on commit 821da1c

Please sign in to comment.