fix TypeError on dialog exit

wilder-5.14
Sebastian Kügler 13 years ago
parent b7bf9bbca1
commit f54aaea97d
  1. 2
      qmlpackages/desktop/contents/configuration/AppletConfiguration.qml

@ -176,7 +176,7 @@ Rectangle {
left: parent.left
right: parent.right
}
height: Math.max(pageScroll.height, currentItem.implicitHeight)
height: Math.max(pageScroll.height, currentItem != null ? currentItem.implicitHeight : 0)
property string sourceFile
Timer {
id: pageSizeSync

Loading…
Cancel
Save