Skip to content

Commit 44492bb

Browse files
authored
Merge pull request #17 from wheelercj/fix-notif-img-resolution
Increase notification image resolution
2 parents 12fddd8 + ba3322d commit 44492bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chromium/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function buildImageMarkdown(info, tab) {
128128
function notifier(id) {
129129
chrome.notifications.create(id, {
130130
type: 'basic',
131-
iconUrl: 'images/icon-16.png',
131+
iconUrl: 'images/icon-128.png',
132132
title: 'Markdown created',
133133
message: `Your markdown of ${id} can now be pasted`
134134
}, function(notificationId) {

firefox/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function buildImageMarkdown(info, tab) {
126126
function notifier(id) {
127127
browser.notifications.create(id, {
128128
type: 'basic',
129-
iconUrl: 'images/icon-16.png',
129+
iconUrl: 'images/icon-128.png',
130130
title: 'Markdown created',
131131
message: `Your markdown of ${id} can now be pasted`
132132
}, function (notificationId) {

0 commit comments

Comments
 (0)