diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-05 20:41:39 +0100 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2024-10-05 20:41:39 +0100 |
commit | 589ec018c7880b741777032a3c3da555114ef12b (patch) | |
tree | a84a09796d0ae5a699d5d23b05d2d37a4f37295e /src/main.py | |
parent | be71bf80d290c98c0f6a66d3dcab28515b4ea371 (diff) |
chat: Get auto-scroll working, and fix ssh conn
Diffstat (limited to 'src/main.py')
-rw-r--r-- | src/main.py | 2 |
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): |