Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
None
-
6.5.2
-
None
Description
ColorDialog.flags seems to have no effect:
import QtQuick.Controls import QtQuick.Dialogs ApplicationWindow { visible: true Button { text: color_dialog.selectedColor anchors.centerIn: parent ColorDialog { id: color_dialog flags: ColorDialog.ShowAlphaChannel | ColorDialog.NoButtons // XXX no effect } onClicked: color_dialog.open() } }
There is no alpha channel control, and OK/Cancel buttons are visibles.
It appears to be reproducible on Windows as well.