Wire resize algorithm selection, overwrite behavior, and fix rotation/flip scope

This commit is contained in:
2026-03-06 15:17:59 +02:00
parent 0388d3a510
commit e871d47a80
7 changed files with 123 additions and 6 deletions

View File

@@ -453,6 +453,12 @@ pub fn build_resize_page(state: &AppState) -> adw::NavigationPage {
jc.borrow_mut().flip = row.selected();
});
}
{
let jc = state.job_config.clone();
algorithm_row.connect_selected_notify(move |row| {
jc.borrow_mut().resize_algorithm = row.selected();
});
}
scrolled.set_child(Some(&content));