Index: sources/gui/qml/dialogs/DryDemoDialog.qml =================================================================== diff -u -r40c81d8364424610feeffeb5ac30e990105c8c00 -rdfd4fe3e511308ddd0e6ad9f93cc1d980d22e933 --- sources/gui/qml/dialogs/DryDemoDialog.qml (.../DryDemoDialog.qml) (revision 40c81d8364424610feeffeb5ac30e990105c8c00) +++ sources/gui/qml/dialogs/DryDemoDialog.qml (.../DryDemoDialog.qml) (revision dfd4fe3e511308ddd0e6ad9f93cc1d980d22e933) @@ -32,11 +32,11 @@ */ ModalDialog { id: _root - width : 400 //Variables.applicationWidth - height : 700 //Variables.applicationHeight - 60 + width : 400 + height : 700 //anchors.centerIn: undefined // TODO figure out the anchor right - readonly property int rowCount : 12 + readonly property int rowCount : 12 // Number of buttons that are mapped to commands readonly property int colCount : itemsText.length > rowCount ? Math.ceil(itemsText.length / rowCount) : 1 property var itemsText : [ @@ -63,7 +63,6 @@ } function itemClicked(vIndex) { - //console.log("Index", vIndex) // TODO for debugging purposes only vConfirm.sendDryDemoCommand(vIndex) }