We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ed8b15 commit 016d90bCopy full SHA for 016d90b
src/app/qml/main.qml
@@ -57,6 +57,13 @@ ApplicationWindow {
57
projectPlayer: player
58
}
59
60
+ CustomMessageDialog {
61
+ id: unsupportedBlocksDialog
62
+ title: qsTr("Warning")
63
+ text: qsTr("This project contains unsupported blocks:")
64
+ informativeText: player.unsupportedBlocks.join('\r\n')
65
+ }
66
+
67
ColumnLayout {
68
id: layout
69
anchors.fill: parent
@@ -153,6 +160,10 @@ ApplicationWindow {
153
160
focus: true
154
161
turboMode: AppMenuBar.turboMode
155
162
mute: AppMenuBar.mute
163
+ onLoaded: {
164
+ if(unsupportedBlocks.length > 0)
165
+ unsupportedBlocksDialog.open()
166
156
167
157
168
158
169
0 commit comments