runDialog: Use a symbolic icon

Another fallout from the St.IconType changes

https://bugzilla.gnome.org/show_bug.cgi?id=686233
This commit is contained in:
Jasper St. Pierre 2012-10-16 12:52:01 -04:00 committed by Florian Müllner
parent e2dae6b995
commit 4a4e5f3893

View File

@ -219,7 +219,9 @@ const RunDialog = new Lang.Class({
this.contentLayout.add(this._errorBox, { expand: true });
let errorIcon = new St.Icon({ icon_name: 'dialog-error', icon_size: 24, style_class: 'run-dialog-error-icon' });
let errorIcon = new St.Icon({ icon_name: 'dialog-error-symbolic',
icon_size: 24,
style_class: 'run-dialog-error-icon' });
this._errorBox.add(errorIcon, { y_align: St.Align.MIDDLE });