Browse Source

more ux improvements

cl-refactor
arkpar 10 years ago
parent
commit
125126a4cb
  1. 4
      mix/qml/Debugger.qml
  2. 6
      mix/qml/StructView.qml

4
mix/qml/Debugger.qml

@ -170,7 +170,7 @@ Rectangle {
TransactionLog { TransactionLog {
id: transactionLog id: transactionLog
Layout.fillWidth: true Layout.fillWidth: true
Layout.minimumHeight: 60 Layout.minimumHeight: 120
height: 250 height: 250
anchors.top: parent.top anchors.top: parent.top
anchors.left: parent.left anchors.left: parent.left
@ -233,6 +233,7 @@ Rectangle {
height: 30 height: 30
buttonShortcut: "Ctrl+Shift+F5" buttonShortcut: "Ctrl+Shift+F5"
buttonTooltip: qsTr("Run Back") buttonTooltip: qsTr("Run Back")
visible: false
} }
StepActionImage StepActionImage
@ -245,6 +246,7 @@ Rectangle {
height: 30 height: 30
buttonShortcut: "Ctrl+Shift+F11" buttonShortcut: "Ctrl+Shift+F11"
buttonTooltip: qsTr("Step Out Back") buttonTooltip: qsTr("Step Out Back")
visible: false
} }
StepActionImage StepActionImage

6
mix/qml/StructView.qml

@ -7,7 +7,7 @@ Column
{ {
id: root id: root
property alias members: repeater.model //js array property alias members: repeater.model //js array
property var value : { } property var value: ({})
Layout.fillWidth: true Layout.fillWidth: true
Repeater Repeater
@ -24,13 +24,13 @@ Column
height: 20 height: 20
id: typeLabel id: typeLabel
text: modelData.type.name text: modelData.type.name
Layout.preferredWidth: 50 Layout.preferredWidth: 60
} }
DefaultLabel { DefaultLabel {
id: nameLabel id: nameLabel
text: modelData.name text: modelData.name
Layout.preferredWidth: 80 Layout.preferredWidth: 100
} }
DefaultLabel { DefaultLabel {

Loading…
Cancel
Save