Fix edge cases and consistency issues
This commit is contained in:
@@ -88,15 +88,10 @@ pub fn build_processing_page() -> adw::NavigationPage {
|
||||
content.append(&log_group);
|
||||
content.append(&button_box);
|
||||
|
||||
let clamp = adw::Clamp::builder()
|
||||
.maximum_size(600)
|
||||
.child(&content)
|
||||
.build();
|
||||
|
||||
adw::NavigationPage::builder()
|
||||
.title("Processing")
|
||||
.tag("processing")
|
||||
.child(&clamp)
|
||||
.child(&content)
|
||||
.build()
|
||||
}
|
||||
|
||||
@@ -232,14 +227,9 @@ pub fn build_results_page() -> adw::NavigationPage {
|
||||
|
||||
scrolled.set_child(Some(&content));
|
||||
|
||||
let clamp = adw::Clamp::builder()
|
||||
.maximum_size(600)
|
||||
.child(&scrolled)
|
||||
.build();
|
||||
|
||||
adw::NavigationPage::builder()
|
||||
.title("Results")
|
||||
.tag("results")
|
||||
.child(&clamp)
|
||||
.child(&scrolled)
|
||||
.build()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user