From 6ec56a1ed2177f64c2977fc3716da417553df561 Mon Sep 17 00:00:00 2001 From: wurstsalat <mailtrash@posteo.de> Date: Thu, 29 Apr 2021 22:44:32 +0200 Subject: [PATCH] QuoteWidget: Fix deprecation warning --- gajim/gtk/conversation/quote_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/gtk/conversation/quote_widget.py b/gajim/gtk/conversation/quote_widget.py index a6542cbabd..47cf68941e 100644 --- a/gajim/gtk/conversation/quote_widget.py +++ b/gajim/gtk/conversation/quote_widget.py @@ -23,7 +23,7 @@ def __init__(self, account): self.get_style_context().add_class('conversation-quote') quote_bar = Gtk.Box() quote_bar.set_size_request(3, -1) - quote_bar.set_margin_right(6) + quote_bar.set_margin_end(6) quote_bar.get_style_context().add_class('conversation-quote-bar') self.add(quote_bar) -- GitLab