notification: be compatible with various names of the icon data hint
The hint changed its name during various iterations of the notification daemon spec; be compatible with all of them. https://bugzilla.gnome.org/show_bug.cgi?id=639959
This commit is contained in:
parent
a739f89dd1
commit
68c482ec32
@ -146,9 +146,9 @@ NotificationDaemon.prototype = {
|
|||||||
return new St.Icon({ icon_name: icon,
|
return new St.Icon({ icon_name: icon,
|
||||||
icon_type: St.IconType.FULLCOLOR,
|
icon_type: St.IconType.FULLCOLOR,
|
||||||
icon_size: size });
|
icon_size: size });
|
||||||
} else if (hints.icon_data) {
|
} else if (hints['image-data']) {
|
||||||
let [width, height, rowStride, hasAlpha,
|
let [width, height, rowStride, hasAlpha,
|
||||||
bitsPerSample, nChannels, data] = hints.icon_data;
|
bitsPerSample, nChannels, data] = hints['image-data'];
|
||||||
return textureCache.load_from_raw(data, data.length, hasAlpha,
|
return textureCache.load_from_raw(data, data.length, hasAlpha,
|
||||||
width, height, rowStride, size);
|
width, height, rowStride, size);
|
||||||
} else {
|
} else {
|
||||||
@ -238,6 +238,15 @@ NotificationDaemon.prototype = {
|
|||||||
|
|
||||||
hints = Params.parse(hints, { urgency: Urgency.NORMAL }, true);
|
hints = Params.parse(hints, { urgency: Urgency.NORMAL }, true);
|
||||||
|
|
||||||
|
// Be compatible with the various hints for image data
|
||||||
|
// 'image-data' is the latest name of this hint, introduced in 1.2
|
||||||
|
if (!hints['image-data']) {
|
||||||
|
if (hints['image_data'])
|
||||||
|
hints['image-data'] = hints['image_data']; // version 1.1 of the spec
|
||||||
|
else if (hints['icon_data'])
|
||||||
|
hints['image-data'] = hints['icon_data']; // previous versions of the spec
|
||||||
|
}
|
||||||
|
|
||||||
let ndata = { appName: appName,
|
let ndata = { appName: appName,
|
||||||
icon: icon,
|
icon: icon,
|
||||||
summary: summary,
|
summary: summary,
|
||||||
|
Loading…
Reference in New Issue
Block a user