Now About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2024-10-05 20:41:39 +0100
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2024-10-05 20:41:39 +0100
commit589ec018c7880b741777032a3c3da555114ef12b (patch)
treea84a09796d0ae5a699d5d23b05d2d37a4f37295e /src/main.py
parentbe71bf80d290c98c0f6a66d3dcab28515b4ea371 (diff)
chat: Get auto-scroll working, and fix ssh conn
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py2
1 files changed, 1 insertions, 1 deletions
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):