1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 23:14:47 -04:00

Get rid of ugly native dialogs on color chooser dialogs

This commit is contained in:
f4exb
2018-05-10 23:45:43 +02:00
parent 4bb749ce65
commit 3ea37e3dcc
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ void BasicChannelSettingsDialog::paintColor()
void BasicChannelSettingsDialog::on_colorBtn_clicked()
{
QColor c = m_color;
c = QColorDialog::getColor(c, this, tr("Select Color for Channel"));
c = QColorDialog::getColor(c, this, tr("Select Color for Channel"), QColorDialog::DontUseNativeDialog);
if(c.isValid()) {
m_color = c;
paintColor();