From 594fcc2fa373669f082a9e32a882f9268107cacc Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sat, 19 Dec 2020 18:02:45 +0200 Subject: Changed the remote bookmark icon The cloud character U+2601 is already used as a site icon. --- src/ui/sidebarwidget.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui/sidebarwidget.c') 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) { } init_RegExpMatch(&m); if (matchString_RegExp(remoteSourceTag, &bm->tags, &m)) { - appendChar_String(&item->meta, 0x2601); + appendChar_String(&item->meta, 0x2913); } } addItem_ListWidget(d->list, item); @@ -1241,7 +1241,7 @@ static void draw_SidebarItem_(const iSidebarItem *d, iPaint *p, iRect itemRect, iconArea, iTrue, isPressing ? iconColor - : d->icon == 0x2601 /* remote */ ? uiTextCaution_ColorId + : d->icon == 0x2913 /* remote */ ? uiTextCaution_ColorId : iconColor, "%s", cstr_String(&str)); -- cgit v1.2.3