Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed May 17, 2008
1 parent c89a1ba commit fe153a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/ch/cyberduck/ui/cocoa/CDBrowserController.java
Expand Up @@ -2441,7 +2441,10 @@ public void setStatusLabel(NSTextField statusLabel) {

public void updateStatusLabel(String label) {
if(null == label) {
label = this.getSelectedBrowserView().numberOfRows() + " " + NSBundle.localizedString("Files", "");
label = "";
if(this.isMounted()) {
label = this.getSelectedBrowserView().numberOfRows() + " " + NSBundle.localizedString("Files", "");
}
}
final String status = label;
// Update the status label at the bottom of the browser window
Expand Down

0 comments on commit fe153a0

Please sign in to comment.