Skip to content

Commit 2e1597f

Browse files
authored
Merge pull request #1271 from Riksu9000/fix-priority-colors
Fix priority icon colors
2 parents eb208b1 + a4169ef commit 2e1597f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/Util/Util.vala

+2-2
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)