From bae81bc6f2b8527cf2b3da0a31f1e9cbe8a17d4a Mon Sep 17 00:00:00 2001
From: Teo Mrnjavac <teo@kde.org>
Date: Sun, 5 Aug 2012 16:00:00 +0200
Subject: [PATCH] Trying to fix margins on the PlaylistTypeSelectorDialog on
 Mac

---
 src/libtomahawk/widgets/PlaylistTypeSelectorDialog.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/libtomahawk/widgets/PlaylistTypeSelectorDialog.cpp b/src/libtomahawk/widgets/PlaylistTypeSelectorDialog.cpp
index 0d912dec6..1036734de 100644
--- a/src/libtomahawk/widgets/PlaylistTypeSelectorDialog.cpp
+++ b/src/libtomahawk/widgets/PlaylistTypeSelectorDialog.cpp
@@ -41,6 +41,7 @@ PlaylistTypeSelectorDlg::PlaylistTypeSelectorDlg( QWidget* parent, Qt::WindowFla
     resize( width(), 150 );
     setMinimumSize( size() );
     setMaximumSize( size() ); // to remove the resize grip on osx this is the only way
+    setContentsMargins( 12, 12, 12, 12 );
 #else
     ui->verticalLayout->setContentsMargins( 9, 0, 9, 9 );
 #endif