From 6112f2a4929ac063a8a416cae5f2097f444045bf Mon Sep 17 00:00:00 2001 From: Bnyro Date: Wed, 28 Jun 2023 09:18:45 +0200 Subject: [PATCH] Inbox: visually separate the mark as read button from others --- src/components/inbox_page.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/inbox_page.rs b/src/components/inbox_page.rs index 971e889..8392d3f 100644 --- a/src/components/inbox_page.rs +++ b/src/components/inbox_page.rs @@ -54,6 +54,9 @@ impl SimpleComponent for InboxPage { set_label: "Show unread only", connect_clicked => InboxInput::ToggleUnreadState, }, + gtk::Box { + set_hexpand: true, + }, gtk::Button { set_label: "Mark all as read", connect_clicked => InboxInput::MarkAllAsRead,