From 63d8d5876739d1e37959f22076718404316632f6 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Wed, 1 Apr 2020 18:41:59 +0200 Subject: [PATCH] bug fix for Qt style sheets for main window --- ChangeLog | 2 -- src/audiomixerboard.cpp | 1 - src/clientdlg.cpp | 2 ++ 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ad633154..3f513e8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,8 +9,6 @@ - changed the maximum number of clients supported by the server from 20 to 50 - -TODO after change with scroll bar, the mute/solo buttons are no longer correct under Linux (maybe a Qt problem) TODO after change with scroll bar, the tool tip below fader showing instrument/etc. is transparent under MacOS TODO for the 64 samples version check the audio quality stereo/high for bandwidth (less high frequencies as with 128 samples and stereo/high) diff --git a/src/audiomixerboard.cpp b/src/audiomixerboard.cpp index bdff8f11..63182a05 100755 --- a/src/audiomixerboard.cpp +++ b/src/audiomixerboard.cpp @@ -496,7 +496,6 @@ CAudioMixerBoard::CAudioMixerBoard ( QWidget* parent, Qt::WindowFlags ) : setWidgetResizable ( true ); // make sure it fills the entire scroll area setVerticalScrollBarPolicy ( Qt::ScrollBarAlwaysOff ); setHorizontalScrollBarPolicy ( Qt::ScrollBarAsNeeded ); - setStyleSheet ( "background: transparent;" ); setFrameShape ( QFrame::NoFrame ); diff --git a/src/clientdlg.cpp b/src/clientdlg.cpp index d9d7d7a2..b6005788 100755 --- a/src/clientdlg.cpp +++ b/src/clientdlg.cpp @@ -1155,6 +1155,8 @@ void CClientDlg::SetGUIDesign ( const EGUIDesign eNewDesign ) " font: bold; }" "QRadioButton { color: rgb(148, 148, 148);" " font: bold; }" + "QScrollArea { background: transparent; }" + "QGroupBox { background: transparent; }" "QGroupBox::title { color: rgb(148, 148, 148); }" "QCheckBox::indicator { width: 38px;" " height: 21px; }"