From 45e64f453f97dab985b91f4bfcf7a634f752f64d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 16 Oct 2012 12:52:01 -0400 Subject: [PATCH] runDialog: Use a symbolic icon Another fallout from the St.IconType changes https://bugzilla.gnome.org/show_bug.cgi?id=686233 --- js/ui/runDialog.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js index 5bfd4eda8..b28b6659d 100644 --- a/js/ui/runDialog.js +++ b/js/ui/runDialog.js @@ -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 });