Use tertiary action for browsing store

This commit is contained in:
Jeremy Soller 2024-10-04 09:58:35 -06:00
parent 2b6a89f234
commit 89adf0682d
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -3206,8 +3206,8 @@ impl Application for App {
.control(column); .control(column);
if let Some(app) = store_opt { if let Some(app) = store_opt {
dialog = dialog.control( dialog = dialog.tertiary_action(
widget::button::link(fl!("browse-store", store = app.name.as_str())) widget::button::text(fl!("browse-store", store = app.name.as_str()))
.on_press(Message::OpenWithBrowse), .on_press(Message::OpenWithBrowse),
); );
} }