diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-06-22 12:22:04 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-06-22 12:22:38 +0200 |
| commit | c65ee4e71c63a447e8e89a7737ae82bf76fc1a77 (patch) | |
| tree | 04466154cbe44b21efe7e05f21207ec6c9024959 /MiddlePanel.qml | |
| parent | 03af06718cd4ba0185a937f2ef04837963f7ac33 (diff) | |
| download | monzero-gui-c65ee4e71c63a447e8e89a7737ae82bf76fc1a77.tar.gz monzero-gui-c65ee4e71c63a447e8e89a7737ae82bf76fc1a77.tar.xz monzero-gui-c65ee4e71c63a447e8e89a7737ae82bf76fc1a77.zip | |
fix windows crash on startup
requires #2101
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 1646f9e1..b51b391d 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -29,7 +29,7 @@ import QtQml 2.0 import QtQuick 2.2 -import QtQuick.Controls 2.0 +//import QtQuick.Controls 2.0 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 import QtGraphicalEffects 1.0 @@ -187,8 +187,9 @@ Rectangle { Layout.fillWidth: true Layout.fillHeight: true clip: true - ScrollIndicator.vertical: ScrollIndicator { } - ScrollBar.vertical: ScrollBar { } // uncomment to test + // Disabled scrollbars, gives crash on startup on windows +// ScrollIndicator.vertical: ScrollIndicator { } +// ScrollBar.vertical: ScrollBar { } // uncomment to test // Views container StackView { |
