editor: Use AdwButtonRow where possible

This commit is contained in:
Elias Projahn 2025-03-01 08:55:04 +01:00
parent 18ba84c86f
commit e59052a362
8 changed files with 40 additions and 91 deletions

View file

@ -232,17 +232,17 @@ impl MusicusRecordingEditor {
}
#[template_callback]
fn select_work(&self, _: &adw::ActionRow) {
fn select_work(&self) {
self.imp().work_selector_popover.get().unwrap().popup();
}
#[template_callback]
fn select_person(&self, _: &adw::ActionRow) {
fn select_person(&self) {
self.imp().persons_popover.get().unwrap().popup();
}
#[template_callback]
fn select_ensemble(&self, _: &adw::ActionRow) {
fn select_ensemble(&self) {
self.imp().ensembles_popover.get().unwrap().popup();
}