Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwurstsalat <mailtrash@posteo.de>2021-02-17 11:36:27 +0300
committerlovetox <philipp@hoerist.com>2021-02-27 14:54:10 +0300
commitec29073bb4e2257dd0068c396c6dbeb50268bc97 (patch)
tree1c879cf8fb25b154f8b65ff1b6d42bff610922a9
parent488663da30b89f0ea0641f205fd7160077f5d153 (diff)
ChatControlBase: Fix pipeline
-rw-r--r--gajim/chat_control_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/chat_control_base.py b/gajim/chat_control_base.py
index a8acec6b3..241ddc811 100644
--- a/gajim/chat_control_base.py
+++ b/gajim/chat_control_base.py
@@ -183,7 +183,7 @@ class ChatControlBase(ChatCommandProcessor, CommandTools, EventHelper):
# inserted before the line break. This triggers the hscrollbar to show,
# see: https://gitlab.gnome.org/GNOME/gtk/-/issues/2384
# Using set_hscroll_policy(Gtk.Scrollable.Policy.NEVER) would cause bad
- # performance during resize, and prevent the window from being shrinked
+ # performance during resize, and prevent the window from being shrunk
# horizontally under certain conditions (applies to GroupchatControl)
hscrollbar = self.xml.conversation_scrolledwindow.get_hscrollbar()
hscrollbar.hide()