diff --git a/apps/launcher/datafilespage.cpp b/apps/launcher/datafilespage.cpp index 545595ab8..d06523d2d 100644 --- a/apps/launcher/datafilespage.cpp +++ b/apps/launcher/datafilespage.cpp @@ -1,4 +1,5 @@ #include +#include #include #include @@ -92,9 +93,11 @@ DataFilesPage::DataFilesPage(QWidget *parent) : QWidget(parent) // Bottom part with profile options QLabel *profileLabel = new QLabel(tr("Current Profile: "), this); + QPlastiqueStyle *style = new QPlastiqueStyle; mProfilesComboBox = new ComboBox(this); mProfilesComboBox->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum)); mProfilesComboBox->setInsertPolicy(QComboBox::InsertAtBottom); + mProfilesComboBox->setStyle(style); mProfileToolBar = new QToolBar(this); mProfileToolBar->setMovable(false);