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; default-height: 560;
content: Adw.ToastOverlay toast_overlay { content: Adw.ToastOverlay toast_overlay {
Adw.HeaderBar { Gtk.Box {
title-widget: Adw.WindowTitle { orientation: vertical;
title: "An Anime Game Launcher";
};
}
Adw.Carousel carousel { Adw.HeaderBar {
allow-mouse-drag: false; title-widget: Adw.WindowTitle {
} title: "An Anime Game Launcher";
};
}
Adw.CarouselIndicatorDots { Adw.Carousel carousel {
carousel: carousel; allow-mouse-drag: false;
height-request: 32; }
Adw.CarouselIndicatorDots {
carousel: carousel;
height-request: 32;
}
} }
}; };
} }