Merge pull request #495 from git-f0x/master

[Dialog] Fix header bar button padding
This commit is contained in:
Jeremy Soller 2024-09-25 08:40:56 -06:00 committed by GitHub
commit 7ac21c5e1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -871,6 +871,7 @@ impl Application for App {
elements.push(
widget::button::icon(widget::icon::from_name("system-search-symbolic"))
.on_press(Message::SearchActivate)
.padding(8)
.into(),
)
}
@ -879,6 +880,7 @@ impl Application for App {
elements.push(
widget::button::icon(widget::icon::from_name("folder-new-symbolic"))
.on_press(Message::NewFolder)
.padding(8)
.into(),
);
}