QuickVtk
QuickVtk copied to clipboard
Crash because of res/qml/TypeInfo/view.qml lines 47-48 and res/qml/App/console.qml lines 94-95
This section
UI.ListView {
id: _lv;
clip: true;
model: App.typeList;
anchors.fill: parent;
anchors.leftMargin: 8;
delegate: Item {
anchors.left: parent.left;
anchors.right: parent.right;
height: _label.height;
UI.Icon {
id: _ic;
anchors.left: parent.left;
anchors.verticalCenter: parent.verticalCenter;
rightPadding: 8;
icon: icons.fa_cube;
color: "#872BCB";
}
has to be converted:
UI.ListView {
id: _lv;
clip: true;
model: App.typeList;
anchors.fill: parent;
anchors.leftMargin: 8;
delegate: Item {
// anchors.left: parent.left;
// anchors.right: parent.right;
height: _label.height;
UI.Icon {
id: _ic;
anchors.left: parent.left;
anchors.verticalCenter: parent.verticalCenter;
rightPadding: 8;
icon: icons.fa_cube;
color: "#872BCB";
}
because I am getting the warnings:
> "file:///C:/dev/QuickVtk/bin/build/Resources/qml/TypeInfo/view.qml:47: TypeError: Cannot read property 'left' of null"
> "file:///C:/dev/QuickVtk/bin/build/Resources/qml/TypeInfo/view.qml:48: TypeError: Cannot read property 'right' of null"
The applications stops responding after trying to scroll to the bottom of the console window.
This is probably because of this warning:
file:///C:/dev/QuickVtk/bin/build/Resources/qml/App/console.qml:94: TypeError: Cannot read property 'left' of null
file:///C:/dev/QuickVtk/bin/build/Resources/qml/App/console.qml:95: TypeError: Cannot read property 'right' of null
VTK version: 8.2.0 Qt version: 5.15.2 QuickVtk version: 0.5.6