Skip to content
Snippets Groups Projects
Verified Commit 053697fe authored by Bruce Cowan's avatar Bruce Cowan :airplane:
Browse files

Move clamp to where it's needed

parent 3548e88a
No related branches found
No related tags found
No related merge requests found
......@@ -55,24 +55,25 @@ template RugbyAppWindow : Adw.ApplicationWindow {
}
}
Adw.Clamp {
maximum-size: 500;
Stack stack {
StackPage {
name: "empty_page";
Stack stack {
StackPage {
name: "empty_page";
child: Adw.StatusPage {
icon-name: "list";
title: "No possibilities";
};
}
child: Adw.StatusPage {
icon-name: "list";
title: "No possibilities";
};
}
StackPage {
name: "list_page";
StackPage {
name: "list_page";
child: ScrolledWindow {
vexpand: true;
child: ScrolledWindow {
vexpand: true;
Adw.Clamp {
maximum-size: 600;
tightening-threshold: 400;
ListView listview {
styles ["rich-list"]
......@@ -91,8 +92,8 @@ template RugbyAppWindow : Adw.ApplicationWindow {
};
};
}
};
}
}
};
}
}
}
......@@ -124,4 +125,3 @@ menu app_menu {
item ("_About Rugby", "app.about")
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment