calendar: Use symbolic icon for No Notifications

- drop old assets
- use symbolic icon for no notifications

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2157>
This commit is contained in:
Sam Hewitt
2022-02-04 13:29:36 -03:30
parent 962dff94c7
commit 1944af4013
5 changed files with 2 additions and 126 deletions

View File

@@ -894,9 +894,7 @@ class Placeholder extends St.BoxLayout {
super._init({ style_class: 'message-list-placeholder', vertical: true });
this._date = new Date();
const file = Gio.File.new_for_uri(
'resource:///org/gnome/shell/theme/no-notifications.svg');
this._icon = new St.Icon({ gicon: new Gio.FileIcon({ file }) });
this._icon = new St.Icon({ icon_name: 'no-notifications-symbolic' });
this.add_actor(this._icon);
this._label = new St.Label({ text: _('No Notifications') });