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

Moved the settings categories to the left.

This commit is contained in:
Teo Mrnjavac 2012-08-01 22:14:58 +02:00
parent 67611d10d1
commit 2236b0ffb3

View File

@ -292,10 +292,6 @@ SettingsDialog::createIcons()
m_settingsGroup = new QActionGroup( m_toolBar );
QWidget *leftSpacer = new QWidget( m_toolBar );
leftSpacer->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
m_toolBar->addWidget( leftSpacer );
QAction *accountsAction = new QAction( QIcon( RESPATH "images/account-settings.png" ),
tr( "Services" ),
m_toolBar );
@ -329,10 +325,6 @@ SettingsDialog::createIcons()
m_toolBar->addActions( m_settingsGroup->actions() );
QWidget *rightSpacer = new QWidget( m_toolBar );
rightSpacer->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );
m_toolBar->addWidget( rightSpacer );
connect( m_settingsGroup, SIGNAL( triggered( QAction * ) ),
this, SLOT( changePage( QAction * ) ) );