Fix a couple of symbolic icons

Some fallout from commit c21b1e5fe0 ...
This commit is contained in:
Florian Müllner
2012-08-30 13:23:00 +02:00
parent 43af6f4792
commit 2beff9896a
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ const UserAvatarWidget = new Lang.Class({
this.actor.style = 'background-image: url("%s");'.format(iconFile);
} else {
this.actor.style = null;
this.actor.child = new St.Icon({ icon_name: 'avatar-default',
this.actor.child = new St.Icon({ icon_name: 'avatar-default-symbolic',
icon_size: DIALOG_ICON_SIZE });
}
}
@ -491,7 +491,7 @@ const UserMenuButton = new Lang.Class({
style_class: 'popup-menu-icon' });
this._idleIcon = new St.Icon({ icon_name: 'user-idle-symbolic',
style_class: 'popup-menu-icon' });
this._pendingIcon = new St.Icon({ icon_name: 'user-status-pending',
this._pendingIcon = new St.Icon({ icon_name: 'user-status-pending-symbolic',
style_class: 'popup-menu-icon' });
this._accountMgr.connect('most-available-presence-changed',