diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-04-08 17:36:43 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-04-08 17:36:43 -0500 |
| commit | a8e545891c7a5076785016e596d5cc1e3bcc6225 (patch) | |
| tree | 35d56998e10eaa163f22d8ba5bd69b6557c95a11 | |
| parent | 76a105261e4ce60555931b4b2dfe1c6a25971825 (diff) | |
| parent | 0e92a8f72314a9f1f084cc5cebddb5170002bd43 (diff) | |
| download | monzero-gui-a8e545891c7a5076785016e596d5cc1e3bcc6225.tar.gz monzero-gui-a8e545891c7a5076785016e596d5cc1e3bcc6225.tar.xz monzero-gui-a8e545891c7a5076785016e596d5cc1e3bcc6225.zip | |
Merge pull request #1268
0e92a8f Fixes transparent dropdown
| -rw-r--r-- | pages/Settings.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml index abfc0e05..aa7bf4eb 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -567,7 +567,6 @@ Rectangle { pressedColor: "#202020" } // Make sure dropdown is on top - z: parent.z + 30 } ColumnLayout { @@ -577,6 +576,8 @@ Rectangle { ColumnLayout { Layout.fillWidth: true } + + z: parent.z + 1 } ColumnLayout { |
