diff --git a/lcl/interfaces/qt5/qtwsdialogs.pp b/lcl/interfaces/qt5/qtwsdialogs.pp index dea578c02d..e389b91c1e 100644 --- a/lcl/interfaces/qt5/qtwsdialogs.pp +++ b/lcl/interfaces/qt5/qtwsdialogs.pp @@ -917,6 +917,10 @@ begin AOptions := 0; // here we add possible options from ColorDialog.Options, see QColorDialogColorDialogOptions for possible options. if (cdShowAlphaChannel in ColorDialog.Options) then AOptions := AOptions or QColorDialogShowAlphaChannel; + if (cdNoButtons in ColorDialog.Options) then + AOptions := AOptions or QColorDialogNoButtons; + if (cdDontUseNativeDialog in ColorDialog.Options) then + AOptions := AOptions or QColorDialogDontUseNativeDialog; QColorDialog_getColor(PQColor(@AQColorRet), PQColor(@AQColor), TQtWSCommonDialog.GetDialogParent(ACommonDialog), @ATitle, AOptions); ReturnBool := AQColorRet.ColorSpec <> 0;