Fixed initial setup window

This commit is contained in:
Observer KRypt0n_ 2022-08-05 22:59:41 +02:00
parent 08a6e3bc5e
commit 5e2bac1a3f
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -6,19 +6,23 @@ Adw.ApplicationWindow window {
default-height: 560;
content: Adw.ToastOverlay toast_overlay {
Adw.HeaderBar {
title-widget: Adw.WindowTitle {
title: "An Anime Game Launcher";
};
}
Gtk.Box {
orientation: vertical;
Adw.Carousel carousel {
allow-mouse-drag: false;
}
Adw.HeaderBar {
title-widget: Adw.WindowTitle {
title: "An Anime Game Launcher";
};
}
Adw.CarouselIndicatorDots {
carousel: carousel;
height-request: 32;
Adw.Carousel carousel {
allow-mouse-drag: false;
}
Adw.CarouselIndicatorDots {
carousel: carousel;
height-request: 32;
}
}
};
}