userWidget: Actually respect the iconSize parameter
The iconSize parameter was only being respected if it was the default icon fallback. https://bugzilla.gnome.org/show_bug.cgi?id=706681
This commit is contained in:
@ -29,7 +29,9 @@ const Avatar = new Lang.Class({
|
||||
|
||||
this.actor = new St.Bin({ style_class: params.styleClass,
|
||||
track_hover: params.reactive,
|
||||
reactive: params.reactive });
|
||||
reactive: params.reactive,
|
||||
width: this._iconSize,
|
||||
height: this._iconSize });
|
||||
},
|
||||
|
||||
setSensitive: function(sensitive) {
|
||||
|
Reference in New Issue
Block a user