diff options
| author | marcin <z.krzysztoff7@gmail.com> | 2014-07-16 18:04:34 +0200 |
|---|---|---|
| committer | marcin <z.krzysztoff7@gmail.com> | 2014-07-16 18:04:34 +0200 |
| commit | 6dbe05d79d0d22d599ab88f22b0c53499650cdfe (patch) | |
| tree | 6846aeb5bbb11bb4cef40fc5df2ce6e4056433d8 /components/StandardDropdown.qml | |
| parent | e87418f36cd45c0b00eb01c1a00858add70d00e0 (diff) | |
| download | monzero-gui-6dbe05d79d0d22d599ab88f22b0c53499650cdfe.tar.gz monzero-gui-6dbe05d79d0d22d599ab88f22b0c53499650cdfe.tar.xz monzero-gui-6dbe05d79d0d22d599ab88f22b0c53499650cdfe.zip | |
History page v1
Diffstat (limited to 'components/StandardDropdown.qml')
| -rw-r--r-- | components/StandardDropdown.qml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/components/StandardDropdown.qml b/components/StandardDropdown.qml index 5a490c10..40926887 100644 --- a/components/StandardDropdown.qml +++ b/components/StandardDropdown.qml @@ -2,6 +2,7 @@ import QtQuick 2.0 Item { id: dropdown + property alias dataModel: repeater.model property string shadowPressedColor property string shadowReleasedColor property string pressedColor @@ -154,13 +155,6 @@ Item { NumberAnimation { duration: 100; easing.type: Easing.InQuad } } - ListModel { - id: testModel - ListElement { column1: "LOW"; column2: "( fee: 0.0002 )" } - ListElement { column1: "MEDIUM"; column2: "( fee: 0.0004 )" } - ListElement { column1: "HIGH"; column2: "( fee: 0.0008 )" } - } - Column { id: column anchors.left: parent.left @@ -170,7 +164,6 @@ Item { Repeater { id: repeater - model: testModel delegate: Rectangle { anchors.left: parent.left |
