summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorSteru <jerrydream111@gmail.com>2024-08-16 22:19:42 +0200
committerOrangerot <purple@orangerot.dev>2024-08-26 11:19:38 +0200
commitb672b4698c721fa6dfd5dff965e08059d51bddda (patch)
treed81b53ec11376d14847e129335e89901995b3d13 /res
parentcd69d722717c5ae40360f7cec22e191aa735b675 (diff)
Compacted competitors into one object, deleted API class (now in sportmodel).
Diffstat (limited to 'res')
-rw-r--r--res/gui/EventInfoPage.qml6
-rw-r--r--res/gui/EventsPage.qml2
2 files changed, 4 insertions, 4 deletions
diff --git a/res/gui/EventInfoPage.qml b/res/gui/EventInfoPage.qml
index d04716b..6c46a7f 100644
--- a/res/gui/EventInfoPage.qml
+++ b/res/gui/EventInfoPage.qml
@@ -5,7 +5,7 @@ import QtQuick.Controls
Page {
id: root
property string eventName
- property list<string> competitors
+ property list<QtObject> competitors
header: ToolBar {
ToolButton {
@@ -31,9 +31,9 @@ Page {
bottomMargin: 48
rightMargin: 48
spacing: 20
- model: competitors
+ model: eventName
delegate: ItemDelegate {
- text: modelData
+ text: "sadly not working..."
width: listView.width - listView.leftMargin - listView.rightMargin
height: avatar.implicitHeight + 32
leftPadding: avatar.implicitWidth + 32
diff --git a/res/gui/EventsPage.qml b/res/gui/EventsPage.qml
index 0ce21e4..d21b5bb 100644
--- a/res/gui/EventsPage.qml
+++ b/res/gui/EventsPage.qml
@@ -254,7 +254,7 @@ Page {
model: filter
delegate: ItemDelegate {
required property string eventName
- required property list<string> competitors
+ property list<QtObject> competitors
text: eventName
width: listView.width - listView.leftMargin - listView.rightMargin
height: avatar.height