Skip to content

Commit

Permalink
Merge pull request #1271 from Riksu9000/fix-priority-colors
Browse files Browse the repository at this point in the history
Fix priority icon colors
  • Loading branch information
alainm23 authored May 1, 2024
2 parents eb208b1 + a4169ef commit 2e1597f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/Util/Util.vala
Original file line number Diff line number Diff line change
Expand Up @@ -912,12 +912,12 @@ public class Util : GLib.Object {
};
} else if (priority == Constants.PRIORITY_2) {
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
css_classes = { "priority-1-icon" },
css_classes = { "priority-2-icon" },
pixel_size = 16
};
} else if (priority == Constants.PRIORITY_3) {
return new Gtk.Image.from_icon_name ("flag-outline-thick-symbolic") {
css_classes = { "priority-1-icon" },
css_classes = { "priority-3-icon" },
pixel_size = 16
};
} else if (priority == Constants.PRIORITY_4) {
Expand Down

0 comments on commit 2e1597f

Please sign in to comment.