summaryrefslogtreecommitdiff
path: root/src/bookmarks.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-02-22 22:03:03 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-02-22 22:03:03 +0200
commit7f7011c021bdeed29963942e3a5dc8f3361f39c4 (patch)
tree9d9f50a5ef71ccf2ce6a14fe1f755126825be46c /src/bookmarks.c
parent90443011c98a6dc8340d2c84f1e538c7a98327f2 (diff)
Allow user to set any character as bookmark icon
The custom icons only appear in bookmark and feed lists, though.
Diffstat (limited to 'src/bookmarks.c')
-rw-r--r--src/bookmarks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks.c b/src/bookmarks.c
index 1fc24a67..da53b645 100644
--- a/src/bookmarks.c
+++ b/src/bookmarks.c
@@ -237,7 +237,7 @@ iBool updateBookmarkIcon_Bookmarks(iBookmarks *d, const iString *url, iChar icon
237 const uint32_t id = findUrl_Bookmarks(d, url); 237 const uint32_t id = findUrl_Bookmarks(d, url);
238 if (id) { 238 if (id) {
239 iBookmark *bm = get_Bookmarks(d, id); 239 iBookmark *bm = get_Bookmarks(d, id);
240 if (!hasTag_Bookmark(bm, "remote")) { 240 if (!hasTag_Bookmark(bm, "remote") && !hasTag_Bookmark(bm, "usericon")) {
241 if (icon != bm->icon) { 241 if (icon != bm->icon) {
242 bm->icon = icon; 242 bm->icon = icon;
243 changed = iTrue; 243 changed = iTrue;