Fix some more symbolic icon names
Reviewed by Jasper St. Pierre in IRC.
This commit is contained in:
parent
82c8aad157
commit
dc10e61a20
@ -171,7 +171,7 @@ const UserListItem = new Lang.Class({
|
|||||||
if (GLib.file_test(iconFileName, GLib.FileTest.EXISTS))
|
if (GLib.file_test(iconFileName, GLib.FileTest.EXISTS))
|
||||||
this._setIconFromFile(iconFileName, 'login-dialog-user-list-item-icon');
|
this._setIconFromFile(iconFileName, 'login-dialog-user-list-item-icon');
|
||||||
else
|
else
|
||||||
this._setIconFromName('avatar-default', 'login-dialog-user-list-item-icon');
|
this._setIconFromName('avatar-default-symbolic', 'login-dialog-user-list-item-icon');
|
||||||
},
|
},
|
||||||
|
|
||||||
syncStyleClasses: function() {
|
syncStyleClasses: function() {
|
||||||
|
@ -391,7 +391,7 @@ const EndSessionDialog = new Lang.Class({
|
|||||||
if (GLib.file_test(iconFile, GLib.FileTest.EXISTS))
|
if (GLib.file_test(iconFile, GLib.FileTest.EXISTS))
|
||||||
this._setIconFromFile(iconFile, dialogContent.iconStyleClass);
|
this._setIconFromFile(iconFile, dialogContent.iconStyleClass);
|
||||||
else
|
else
|
||||||
this._setIconFromName('avatar-default', dialogContent.iconStyleClass);
|
this._setIconFromName('avatar-default-symbolic', dialogContent.iconStyleClass);
|
||||||
} else if (dialogContent.iconName) {
|
} else if (dialogContent.iconName) {
|
||||||
this._setIconFromName(dialogContent.iconName,
|
this._setIconFromName(dialogContent.iconName,
|
||||||
dialogContent.iconStyleClass);
|
dialogContent.iconStyleClass);
|
||||||
|
@ -321,7 +321,7 @@ const AuthenticationDialog = new Lang.Class({
|
|||||||
if (iconFile.query_exists(null)) {
|
if (iconFile.query_exists(null)) {
|
||||||
icon = new Gio.FileIcon({file: iconFile});
|
icon = new Gio.FileIcon({file: iconFile});
|
||||||
} else {
|
} else {
|
||||||
icon = new Gio.ThemedIcon({name: 'avatar-default'});
|
icon = new Gio.ThemedIcon({name: 'avatar-default-symbolic'});
|
||||||
}
|
}
|
||||||
this._userIcon.set_gicon (icon);
|
this._userIcon.set_gicon (icon);
|
||||||
this._userIcon.show();
|
this._userIcon.show();
|
||||||
|
@ -1771,7 +1771,7 @@ const NMApplet = new Lang.Class({
|
|||||||
wrapper._activationFailedId = wrapper.connect('activation-failed', Lang.bind(this, function(device, reason) {
|
wrapper._activationFailedId = wrapper.connect('activation-failed', Lang.bind(this, function(device, reason) {
|
||||||
// XXX: nm-applet has no special text depending on reason
|
// XXX: nm-applet has no special text depending on reason
|
||||||
// but I'm not sure of this generic message
|
// but I'm not sure of this generic message
|
||||||
this._notifyForDevice(device, 'network-error',
|
this._notifyForDevice(device, 'network-error-symbolic',
|
||||||
_("Connection failed"),
|
_("Connection failed"),
|
||||||
_("Activation of network connection failed"),
|
_("Activation of network connection failed"),
|
||||||
MessageTray.Urgency.HIGH);
|
MessageTray.Urgency.HIGH);
|
||||||
|
Loading…
Reference in New Issue
Block a user