dateMenu: Use icon for message indicator
Using a unicode character here means it may look quite different from the intended style (for instance with emoji fonts). Avoid this by providing a custom icon and use that instead. https://bugzilla.gnome.org/show_bug.cgi?id=766368
This commit is contained in:
@ -337,8 +337,10 @@ var MessagesIndicator = new Lang.Class({
|
||||
Name: 'MessagesIndicator',
|
||||
|
||||
_init: function() {
|
||||
this.actor = new St.Label({ text: '⚫', visible: false, y_expand: true,
|
||||
y_align: Clutter.ActorAlign.CENTER });
|
||||
this.actor = new St.Icon({ icon_name: 'message-indicator-symbolic',
|
||||
icon_size: 16,
|
||||
visible: false, y_expand: true,
|
||||
y_align: Clutter.ActorAlign.CENTER });
|
||||
|
||||
this._sources = [];
|
||||
|
||||
|
Reference in New Issue
Block a user