Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/bz-bundle-install-dialog.blp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ template $BzBundleInstallDialog: Adw.Dialog {
hexpand: true;
valign: fill;

Box page_info {
Box {
orientation: vertical;
spacing: 16;
valign: start;
Expand Down Expand Up @@ -356,8 +356,8 @@ template $BzBundleInstallDialog: Adw.Dialog {
width-request: 250;
}
}
ScrolledWindow {
Box page_finish {
ScrolledWindow page_finish {
Box {
orientation: vertical;
spacing: 8;
valign: center;
Expand Down
2 changes: 0 additions & 2 deletions src/bz-bundle-install-dialog.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ struct _BzBundleInstallDialog
AdwNavigationView *nav_view;
GtkStack *main_stack;
AdwCarousel *carousel;
GtkWidget *page_info;
GtkWidget *page_progress;
GtkWidget *page_finish;

Expand Down Expand Up @@ -387,7 +386,6 @@ bz_bundle_install_dialog_class_init (BzBundleInstallDialogClass *klass)
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, nav_view);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, main_stack);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, carousel);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, page_info);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, page_progress);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, page_finish);
gtk_widget_class_bind_template_child (widget_class, BzBundleInstallDialog, progress_bar);
Expand Down
Loading