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

Use blueprint 0.10.0

parent 27219d22
No related branches found
No related tags found
No related merge requests found
// SPDX-FileCopyrightText: 2022 Bruce Cowan <bruce@bcowan.me.uk>
// SPDX-FileCopyrightText: 2022-2023 Bruce Cowan <bruce@bcowan.me.uk>
//
// SPDX-License-Identifier: GPL-3.0-or-later
using Gtk 4.0;
using Adw 1;
template RugbyPrefWindow : Adw.PreferencesWindow {
template $RugbyPrefWindow : Adw.PreferencesWindow {
default-height: 300;
default-width: 400;
title: "Preferences";
......
......@@ -5,7 +5,7 @@
using Gtk 4.0;
using Adw 1;
template RugbyAppWindow : Adw.ApplicationWindow {
template $RugbyAppWindow : Adw.ApplicationWindow {
title: "Rugby";
Box {
......@@ -51,7 +51,7 @@ template RugbyAppWindow : Adw.ApplicationWindow {
focusable: true;
tooltip-text: "Tries";
value-changed => try_spin_value_changed_cb();
value-changed => $try_spin_value_changed_cb();
}
}
......@@ -84,11 +84,11 @@ template RugbyAppWindow : Adw.ApplicationWindow {
model: NoSelection {
model: FilterListModel {
filter: CustomFilter try_filter {};
model: .RugbyListStore list_store {
model: $RugbyListStore list_store {
score: bind scorespin.value;
};
items-changed => list_store_items_changed_cb();
items-changed => $list_store_items_changed_cb();
};
};
}
......
[wrap-git]
directory = blueprint-compiler
url = https://gitlab.gnome.org/jwestman/blueprint-compiler.git
revision = v0.6.0
revision = v0.10.0
depth = 1
[provide]
......
......@@ -20,7 +20,7 @@ modules:
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
tag: v0.6.0
tag: v0.10.0
- name: rugby
buildsystem: meson
builddir: true
......
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