From 0cc712ac7257132ee9561ad7924b3abc44231e38 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sat, 4 Feb 2023 11:48:02 +0100 Subject: [PATCH] Fix progress indicator drawing --- src/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets.py b/src/widgets.py index 4599fe9..c1cd2b9 100644 --- a/src/widgets.py +++ b/src/widgets.py @@ -207,7 +207,7 @@ class EventActionRow(Adw.ActionRow): # color # >= gtk 4.10 : self.get_color() - color = self.get_style_context.get_color() + color = self.get_style_context().get_color() color.alpha = 0.2 cr.save() -- 2.45.2