diff --git a/src/audiomixerboard.cpp b/src/audiomixerboard.cpp
index 49ca1a2d..aaaf5e6e 100755
--- a/src/audiomixerboard.cpp
+++ b/src/audiomixerboard.cpp
@@ -38,9 +38,6 @@ CChannelFader::CChannelFader ( QWidget* pNW,
pcbSolo = new QCheckBox ( "Solo", pNW );
pLabel = new QLabel ( "", pNW );
- // setup layout
- pMainGrid->setSpacing ( 2 );
-
// setup slider
pFader->setPageStep ( 1 );
pFader->setTickPosition ( QSlider::TicksBothSides );
@@ -124,8 +121,8 @@ void CChannelFader::SetGUIDesign ( const EGUIDesign eNewDesign )
// mute button
pcbMute->setStyleSheet (
- "QCheckBox::indicator { width: 43px;"
- " height: 24px; }"
+ "QCheckBox::indicator { width: 38px;"
+ " height: 21px; }"
"QCheckBox::indicator:unchecked {"
" image: url(:/png/fader/res/ledbuttonnotpressed.png); }"
"QCheckBox::indicator:checked {"
@@ -136,8 +133,8 @@ void CChannelFader::SetGUIDesign ( const EGUIDesign eNewDesign )
// solo button
pcbSolo->setStyleSheet (
- "QCheckBox::indicator { width: 43px;"
- " height: 24px; }"
+ "QCheckBox::indicator { width: 38px;"
+ " height: 21px; }"
"QCheckBox::indicator:unchecked {"
" image: url(:/png/fader/res/ledbuttonnotpressed.png); }"
"QCheckBox::indicator:checked {"
diff --git a/src/llconclientdlg.cpp b/src/llconclientdlg.cpp
index ccfb442a..05d438e7 100755
--- a/src/llconclientdlg.cpp
+++ b/src/llconclientdlg.cpp
@@ -96,13 +96,6 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP,
"Disconnect, i.e., it implements a toggle functionality for connecting "
"and disconnecting the llcon software." ) );
- // status bar
-// TextLabelStatus->setWhatsThis ( tr ( "Status Bar: In the status bar "
-// "different messages are displayed. E.g., if an error occurred or the "
-// "status of the connection is shown." ) );
-
-// TextLabelStatus->setAccessibleName ( tr ( "Status bar" ) );
-
// server address
QString strServAddrH = tr ( "Server Address: The IP address or URL "
"of the server running the llcon server software must be set here. "
@@ -180,6 +173,10 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP,
RadioButtonRevSelR->setWhatsThis ( strRevChanSel );
RadioButtonRevSelR->setAccessibleName ( tr ( "Right channel selection for reverberation" ) );
+
+
+// TODO description of all LEDs
+
// buffers LED
LEDBuffers->setWhatsThis ( tr ( "Buffers Status LED: "
"The buffers status LED indicator shows the current audio/streaming "
@@ -199,6 +196,17 @@ CLlconClientDlg::CLlconClientDlg ( CClient* pNCliP,
LEDBuffers->setAccessibleName ( tr ( "Buffers status LED indicator" ) );
+ // status bar
+// TextLabelStatus->setWhatsThis ( tr ( "Status Bar: In the status bar "
+// "different messages are displayed. E.g., if an error occurred or the "
+// "status of the connection is shown." ) );
+
+// TextLabelStatus->setAccessibleName ( tr ( "Status bar" ) );
+
+
+
+
+
// init GUI design
SetGUIDesign ( pClient->GetGUIDesign() );
diff --git a/src/res/ledbuttonnotpressed.png b/src/res/ledbuttonnotpressed.png
index ae7762dd..d7f21040 100755
Binary files a/src/res/ledbuttonnotpressed.png and b/src/res/ledbuttonnotpressed.png differ
diff --git a/src/res/ledbuttonpressed.png b/src/res/ledbuttonpressed.png
index cd5f259d..093e276e 100755
Binary files a/src/res/ledbuttonpressed.png and b/src/res/ledbuttonpressed.png differ