changed fader text length, bold font for sound card buffer size display in error case

This commit is contained in:
Volker Fischer 2009-08-19 07:41:10 +00:00
parent e77e8641d0
commit b3ecc99d72
3 changed files with 6 additions and 6 deletions

View file

@ -177,7 +177,7 @@ void CChannelFader::SetOtherSoloState ( const bool bState )
void CChannelFader::SetText ( const QString sText )
{
const int iBreakPos = 7;
const int iBreakPos = 8;
// make sure we insert an HTML space (" ") at each beginning and end
// of line for nicer look

View file

@ -219,13 +219,13 @@ void CClientSettingsDlg::UpdateSoundCardFrame()
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_DEFAULT ) ) &&
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_SAFE ) ) )
{
TextLabelActualSndCrdBufDelay->setText ( "<font color=""red"">" +
strActSizeValues + "</font>" );
TextLabelActualSndCrdBufDelay->setText ( "<b><font color=""red"">" +
strActSizeValues + "</font></b>" );
}
else
{
TextLabelActualSndCrdBufDelay->setText ( "<font color=""yellow"">" +
strActSizeValues + "</font>" );
TextLabelActualSndCrdBufDelay->setText ( "<b><font color=""yellow"">" +
strActSizeValues + "</font></b>" );
}
}
else

View file

@ -122,7 +122,7 @@
<item row="3" column="1" >
<widget class="QLineEdit" name="LineEditFaderTag" >
<property name="maxLength" >
<number>15</number>
<number>16</number>
</property>
</widget>
</item>