QmlDesigner: Fix FilterComboBox

The import for Controls shadowed the type of the local ComboBox.
Therefore ComboBox.ActivatedReason.Other
became undefined and this call was never executed:

onTriggered: control.compressedActivated(myTimer.activatedIndex,ComboBox.ActivatedReason.Other)

Task-number: QDS-8948
Change-Id: I8140f8e2905588687d9879a0828b28ba212c02d2
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
This commit is contained in:
Thomas Hartmann
2023-01-27 13:39:40 +01:00
parent 94857925ab
commit c615f456df

View File

@@ -2,7 +2,6 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0
import QtQuick import QtQuick
import QtQuick.Controls
import QtQuick.Templates as T import QtQuick.Templates as T
import StudioTheme 1.0 as StudioTheme import StudioTheme 1.0 as StudioTheme