From 79dcb0359f838b448c07b1e826692520a0eca02c Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 12 Aug 2013 13:10:18 -0400 Subject: [PATCH] system: Fix showing the default avatar when the user has none grr typos https://bugzilla.gnome.org/show_bug.cgi?id=705845 --- js/ui/status/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/system.js b/js/ui/status/system.js index 0384e9bef..9b1c89d28 100644 --- a/js/ui/status/system.js +++ b/js/ui/status/system.js @@ -145,7 +145,7 @@ const Indicator = new Lang.Class({ let gicon = new Gio.FileIcon({ file: file }); this._switchUserSubMenu.icon.gicon = gicon; } else { - this._switchUserSubMenu.icon_name = 'avatar-default-symbolic'; + this._switchUserSubMenu.icon.icon_name = 'avatar-default-symbolic'; } },