Skip to content

Commit a4169ef

Browse files
committed
Fix priority icon colors
Priority icons 2 and 3 used colors from icon 1.
1 parent b67950e commit a4169ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/Util/Util.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,12 +912,12 @@ public class Util : GLib.Object {
912912
};
913913
} else if (priority == Constants.PRIORITY_2) {
914914
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
915-
css_classes = { "priority-1-icon" },
915+
css_classes = { "priority-2-icon" },
916916
pixel_size = 16
917917
};
918918
} else if (priority == Constants.PRIORITY_3) {
919919
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
920-
css_classes = { "priority-1-icon" },
920+
css_classes = { "priority-3-icon" },
921921
pixel_size = 16
922922
};
923923
} else if (priority == Constants.PRIORITY_4) {

0 commit comments

Comments
 (0)