aboutsummaryrefslogtreecommitdiffstats
path: root/mist/assets/qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-26 19:34:06 +0800
committerobscuren <geffobscura@gmail.com>2014-09-26 19:34:06 +0800
commitcf999c46220829a5b240e09f11e29748fe94ec35 (patch)
treed9e91501a55891455edcf3e6283dd956b069e4d1 /mist/assets/qml
parentdc944f75186bbee08ad8cd1dad8a296dc71f99bc (diff)
downloaddexon-cf999c46220829a5b240e09f11e29748fe94ec35.tar.gz
dexon-cf999c46220829a5b240e09f11e29748fe94ec35.tar.zst
dexon-cf999c46220829a5b240e09f11e29748fe94ec35.zip
Cleaned up
Diffstat (limited to 'mist/assets/qml')
-rw-r--r--mist/assets/qml/views/info.qml41
1 files changed, 6 insertions, 35 deletions
diff --git a/mist/assets/qml/views/info.qml b/mist/assets/qml/views/info.qml
index 8a1d4d84a..158e2c960 100644
--- a/mist/assets/qml/views/info.qml
+++ b/mist/assets/qml/views/info.qml
@@ -121,40 +121,7 @@ Rectangle {
}
}
- Slider {
- id: logLevelSlider
- value: gui.getLogLevelInt()
- anchors {
- right: parent.right
- top: parent.top
- bottom: parent.bottom
-
- rightMargin: 5
- leftMargin: 5
- topMargin: 5
- bottomMargin: 5
- }
-
- orientation: Qt.Vertical
- maximumValue: 5
- stepSize: 1
-
- onValueChanged: {
- gui.setLogLevel(value)
- }
- }
- }
-
- property var logModel: ListModel {
- id: logModel
- }
-
- /*
- RowLayout {
- id: logLayout
- width: parent.width
- height: 200
- anchors.bottom: parent.bottom
+ /*
TableView {
id: logView
headerVisible: false
@@ -169,6 +136,7 @@ Rectangle {
model: logModel
}
+ */
Slider {
id: logLevelSlider
@@ -193,7 +161,10 @@ Rectangle {
}
}
}
- */
+
+ property var logModel: ListModel {
+ id: logModel
+ }
function addDebugMessage(message){
debuggerLog.append({value: message})