From 85f4bddf99f92647e67e7b69c1e1902730f5ea8f Mon Sep 17 00:00:00 2001 From: fiaxh Date: Mon, 3 Jan 2022 23:00:27 +0100 Subject: Use opacity for "pending" and "edited" hints Getting the dim-label color doesn't work without actually rendering it --- main/src/ui/util/helper.vala | 7 ------- 1 file changed, 7 deletions(-) (limited to 'main/src/ui/util') diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala index ecfb777d..c1c32048 100644 --- a/main/src/ui/util/helper.vala +++ b/main/src/ui/util/helper.vala @@ -161,13 +161,6 @@ public static Gdk.RGBA get_label_pango_color(Label label, string css_color) { return color_rgba; } -public static Gdk.RGBA get_label_pango_class_color(Label label, string css_class) { - label.get_style_context().add_class(css_class); - Gdk.RGBA color_rgba = label.get_style_context().get_color(StateFlags.NORMAL); - label.get_style_context().remove_class(css_class); - return color_rgba; -} - public static string rgba_to_hex(Gdk.RGBA rgba) { return "#%02x%02x%02x%02x".printf( (uint)(Math.round(rgba.red*255)), -- cgit v1.2.3-54-g00ecf