From 589ec018c7880b741777032a3c3da555114ef12b Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 5 Oct 2024 20:41:39 +0100 Subject: chat: Get auto-scroll working, and fix ssh conn --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.py') diff --git a/src/main.py b/src/main.py index 8997ab5..1b45586 100644 --- a/src/main.py +++ b/src/main.py @@ -324,7 +324,7 @@ class WeegtkApplication(Adw.Application): buf_name = buf.data['short_name'] # Only make chats visible on main screen - if buf.is_chat(): + if True or buf.is_chat(): self.props.active_window.stack.add_titled(buf, name=buf_name, title=buf_name) def buffer_input(self, source_object, full_name, text): -- cgit