diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-24 20:48:19 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:04 +0100 |
| commit | c001e312410efe8f883bb5163e5554d84126c034 (patch) | |
| tree | ac37a3679b9e15f2b558ea2438d60c1caf759b41 /components/NetworkStatusItem.qml | |
| parent | 3f9926487d37e5338ac6490fc81fdcf35caa708d (diff) | |
| download | monzero-gui-c001e312410efe8f883bb5163e5554d84126c034.tar.gz monzero-gui-c001e312410efe8f883bb5163e5554d84126c034.tar.xz monzero-gui-c001e312410efe8f883bb5163e5554d84126c034.zip | |
Fixes runtime QML warning
Diffstat (limited to 'components/NetworkStatusItem.qml')
| -rw-r--r-- | components/NetworkStatusItem.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml index 984ffd03..39ca8f0d 100644 --- a/components/NetworkStatusItem.qml +++ b/components/NetworkStatusItem.qml @@ -27,6 +27,7 @@ // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import QtQuick 2.0 +import QtQuick.Layouts 1.1 import moneroComponents.Wallet 1.0 import "." 1.0 @@ -50,8 +51,8 @@ Rectangle { return qsTr("Invalid connection status") } - Row { - height: 40 * scaleRatio + RowLayout { + Layout.preferredHeight: 40 * scaleRatio Item { id: iconItem |
