1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-18 23:09:42 +01:00

[whatsnew] Style Inbox page

This commit is contained in:
Uwe L. Korn 2014-07-10 04:01:56 +01:00
parent 62ef7e654d
commit c921303545
2 changed files with 37 additions and 1 deletions

View File

@ -773,10 +773,13 @@ background-color:#292f34;
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
<height>20</height>
</size>
</property>
</spacer>
@ -789,6 +792,13 @@ background-color:#292f34;
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="styleSheet">
<string notr="true">border-width: 1px;
border-radius: 0px;
border-style: solid;
border-color: #ccc;
</string>
</property>
<property name="text">
<string/>
</property>
@ -797,6 +807,22 @@ background-color:#292f34;
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::MinimumExpanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="urlLookupPage">

View File

@ -169,6 +169,16 @@ WhatsNewWidget_0_8::WhatsNewWidget_0_8( QWidget* parent )
connect( ui->androidBoxHeader, SIGNAL( clicked() ), SLOT( androidBoxClicked() ) );
connect( ui->androidBoxImage, SIGNAL( clicked() ), SLOT( androidBoxClicked() ) );
}
{
QFont font = ui->label_2->font();
int fontSize = TomahawkUtils::defaultFontSize() + 2;
font.setPointSize( fontSize );
font.setFamily( "Titillium Web" );
ui->label_2->setFont( font );
}
}