summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2022-02-20 11:42:21 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2022-02-20 11:42:21 +0200
commita8fd69b995058252c025f2ca5c11031373e5d63b (patch)
tree7ac907cc26e124cba05de5e7215e72432c52fe0e
parented14d3467d6046ddfa66c3143a340428aeef66ae (diff)
Fixed icon of feeds filter mode dropdown
-rw-r--r--src/ui/util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/util.c b/src/ui/util.c
index d6dc461a..4f5de7f9 100644
--- a/src/ui/util.c
+++ b/src/ui/util.c
@@ -1386,6 +1386,9 @@ void updateDropdownSelection_LabelWidget(iLabelWidget *dropButton, const char *s
1386 updateText_LabelWidget(dropButton, 1386 updateText_LabelWidget(dropButton,
1387 replaceNewlinesWithDash_(text_LabelWidget(item))); 1387 replaceNewlinesWithDash_(text_LabelWidget(item)));
1388 checkIcon_LabelWidget(dropButton); 1388 checkIcon_LabelWidget(dropButton);
1389 if (!icon_LabelWidget(dropButton)) {
1390 setIcon_LabelWidget(dropButton, icon_LabelWidget(item));
1391 }
1389 } 1392 }
1390 } 1393 }
1391 } 1394 }