diff options
author | fiaxh <git@lightrise.org> | 2024-06-20 18:39:25 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2024-06-20 18:57:24 +0200 |
commit | 984ae3f5b89081f97696cd5051167a18159aa60b (patch) | |
tree | b0dfeec49492b7abee0aa3d016e61185eae1054b /main/src/ui/main_window_controller.vala | |
parent | 680f0dd0a768b201b62899905c38210e834dde91 (diff) | |
download | dino-984ae3f5b89081f97696cd5051167a18159aa60b.tar.gz dino-984ae3f5b89081f97696cd5051167a18159aa60b.zip |
Settings dialog: Fix account subpage for Adwaita < 1.4, other fixes
fixes #1592
Diffstat (limited to 'main/src/ui/main_window_controller.vala')
-rw-r--r-- | main/src/ui/main_window_controller.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/main_window_controller.vala b/main/src/ui/main_window_controller.vala index 7a3ebcb2..2e270663 100644 --- a/main/src/ui/main_window_controller.vala +++ b/main/src/ui/main_window_controller.vala @@ -69,7 +69,7 @@ public class MainWindowController : Object { dialog.set_transient_for(app.get_active_window()); dialog.present(); }); - window.accounts_placeholder.primary_button.clicked.connect(() => { app.activate_action("accounts", null); }); + window.accounts_placeholder.primary_button.clicked.connect(() => { app.activate_action("preferences", null); }); window.conversation_selector.conversation_selected.connect((conversation) => select_conversation(conversation)); // ConversationListModel list_model = new ConversationListModel(stream_interactor); |