Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P1: Critical
-
Resolution: Fixed
-
Affects Version/s: 5.13.1
-
Fix Version/s: 5.12.5
-
Component/s: Quick: Controls 1
-
Labels:
-
Platform/s:
Description
import QtQuick 2.13 import QtQuick.Window 2.13 import QtQuick.Controls 1.4 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") id: eDash ComboBox { width: 100 height: 50 model: languageModel } ListModel { id: languageModel ListElement { text: "1"; } ListElement { text: "2"; } } }
This code with combobox works good on Win, Mac, iOs, Android Arm v7, but not working on Android arm64-v8a.
It was very hard to find, why combobox stop working, because i debug with Android Arm v7 profile, but phone download Android arm64-v8a from play market.