diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-19 18:02:45 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-19 18:02:45 +0200 |
commit | 594fcc2fa373669f082a9e32a882f9268107cacc (patch) | |
tree | 662c27dc31773fd15d302628b62776a802510fd3 /src/ui/sidebarwidget.c | |
parent | 59161a56f75d539d024788181321a32f3ec58202 (diff) |
Changed the remote bookmark icon
The cloud character U+2601 is already used as a site icon.
Diffstat (limited to 'src/ui/sidebarwidget.c')
-rw-r--r-- | src/ui/sidebarwidget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/sidebarwidget.c b/src/ui/sidebarwidget.c index ad23da3e..6adf1d1b 100644 --- a/src/ui/sidebarwidget.c +++ b/src/ui/sidebarwidget.c | |||
@@ -219,7 +219,7 @@ static void updateItems_SidebarWidget_(iSidebarWidget *d) { | |||
219 | } | 219 | } |
220 | init_RegExpMatch(&m); | 220 | init_RegExpMatch(&m); |
221 | if (matchString_RegExp(remoteSourceTag, &bm->tags, &m)) { | 221 | if (matchString_RegExp(remoteSourceTag, &bm->tags, &m)) { |
222 | appendChar_String(&item->meta, 0x2601); | 222 | appendChar_String(&item->meta, 0x2913); |
223 | } | 223 | } |
224 | } | 224 | } |
225 | addItem_ListWidget(d->list, item); | 225 | addItem_ListWidget(d->list, item); |
@@ -1241,7 +1241,7 @@ static void draw_SidebarItem_(const iSidebarItem *d, iPaint *p, iRect itemRect, | |||
1241 | iconArea, | 1241 | iconArea, |
1242 | iTrue, | 1242 | iTrue, |
1243 | isPressing ? iconColor | 1243 | isPressing ? iconColor |
1244 | : d->icon == 0x2601 /* remote */ ? uiTextCaution_ColorId | 1244 | : d->icon == 0x2913 /* remote */ ? uiTextCaution_ColorId |
1245 | : iconColor, | 1245 | : iconColor, |
1246 | "%s", | 1246 | "%s", |
1247 | cstr_String(&str)); | 1247 | cstr_String(&str)); |