cleanup, correctly update filesize
[pithos] / src / gr / ebs / gss / client / StatusPanel.java
index 63d9df9..949d4c0 100644 (file)
@@ -105,7 +105,7 @@ public class StatusPanel extends Composite {
                middle.add(AbstractImagePrototype.create(images.lastLogin()).createImage());
                middle.add(new HTML("<b>Last login:</b> "));
                middle.add(lastLoginLabel);
-               middle.add(new HTML("<b> - Current session login:</b> "));
+               middle.add(new HTML("<b>\u0387 Current session login:</b> "));
                middle.add(currentLoginLabel);
                right.add(currentlyShowingLabel);
                outer.setStyleName("statusbar-inner");
@@ -122,7 +122,7 @@ public class StatusPanel extends Composite {
                        public boolean execute() {
                                GSS app = GSS.get();
                                UserResource user = app.getCurrentUserResource();
-                               if (user == null || app.getFolders().getRootItem() == null)
+                               if (user == null || app.getTreeView().getMyFolders() == null)
                                        return !DONE;
                                displayStats(user);
                                return DONE;