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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user