calendar: Minor cleanup
Add a constant for the icon size used in message list entries rather than hardcoding it twice. https://bugzilla.gnome.org/show_bug.cgi?id=749958
This commit is contained in:
parent
58905bd01a
commit
be3d62487c
@ -24,6 +24,8 @@ const MSECS_IN_DAY = 24 * 60 * 60 * 1000;
|
|||||||
const SHOW_WEEKDATE_KEY = 'show-weekdate';
|
const SHOW_WEEKDATE_KEY = 'show-weekdate';
|
||||||
const ELLIPSIS_CHAR = '\u2026';
|
const ELLIPSIS_CHAR = '\u2026';
|
||||||
|
|
||||||
|
const MESSAGE_ICON_SIZE = 48;
|
||||||
|
|
||||||
const MESSAGE_ANIMATION_TIME = 0.1;
|
const MESSAGE_ANIMATION_TIME = 0.1;
|
||||||
|
|
||||||
const DEFAULT_EXPAND_LINES = 6;
|
const DEFAULT_EXPAND_LINES = 6;
|
||||||
@ -1240,9 +1242,10 @@ const NotificationMessage = new Lang.Class({
|
|||||||
|
|
||||||
_getIcon: function() {
|
_getIcon: function() {
|
||||||
if (this.notification.gicon)
|
if (this.notification.gicon)
|
||||||
return new St.Icon({ gicon: this.notification.gicon, icon_size: 48 });
|
return new St.Icon({ gicon: this.notification.gicon,
|
||||||
|
icon_size: MESSAGE_ICON_SIZE });
|
||||||
else
|
else
|
||||||
return this.notification.source.createIcon(48);
|
return this.notification.source.createIcon(MESSAGE_ICON_SIZE);
|
||||||
},
|
},
|
||||||
|
|
||||||
_onUpdated: function(n, clear) {
|
_onUpdated: function(n, clear) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user