UI: Use native color dialog on macOS

This commit is contained in:
gxalpha
2023-01-25 15:11:59 +01:00
committed by Sebastian Beckmann
parent 9e6a482c66
commit e438037960
4 changed files with 16 additions and 9 deletions

View File

@@ -9721,7 +9721,8 @@ void OBSBasic::ColorChange()
obs_data_get_string(curPrivData, "color");
const char *customColor = *oldColor != 0 ? oldColor
: "#55FF0000";
#ifndef _WIN32
#ifdef __linux__
// TODO: Revisit hang on Ubuntu with native dialog
options |= QColorDialog::DontUseNativeDialog;
#endif