* more correct sizes in the configuration interface

* remove additional debug information
* increase limits for extscripts intervals to 10000 (fix #48)
This commit is contained in:
arcan1s
2015-05-06 00:31:37 +03:00
parent 15d88ee3ba
commit 7f4dfe1060
9 changed files with 12 additions and 10 deletions

View File

@ -49,14 +49,14 @@ Item {
width: parent.width
QtControls.Label {
height: parent.height
width: parent.width / 3
width: parent.width * 2 / 5
horizontalAlignment: Text.AlignRight
verticalAlignment: Text.AlignVCenter
text: i18n("Widget height, px")
}
QtControls.SpinBox {
id: widgetHeight
width: parent.width * 2 / 3
width: parent.width * 3 / 5
minimumValue: 0
maximumValue: 4096
stepSize: 50
@ -69,14 +69,14 @@ Item {
width: parent.width
QtControls.Label {
height: parent.height
width: parent.width / 3
width: parent.width * 2 / 5
horizontalAlignment: Text.AlignRight
verticalAlignment: Text.AlignVCenter
text: i18n("Widget width, px")
}
QtControls.SpinBox {
id: widgetWidth
width: parent.width * 2 / 3
width: parent.width * 3 / 5
minimumValue: 0
maximumValue: 4096
stepSize: 50