aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/util/helper.vala
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/ui/util/helper.vala')
-rw-r--r--main/src/ui/util/helper.vala7
1 files changed, 0 insertions, 7 deletions
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)),