summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-05-28 18:55:28 +0200
committerArno <am@disconnect.de>2010-05-28 18:55:28 +0200
commit4536e03b7c2f96431aa5aeba61bda0b93896b106 (patch)
treeec9e5364948536601dc5d0eede9f1141bda950a6
parentd8497433f784649e5b388fd8e727a2e841886e46 (diff)
downloadSheMov-4536e03b7c2f96431aa5aeba61bda0b93896b106.tar.gz
SheMov-4536e03b7c2f96431aa5aeba61bda0b93896b106.tar.bz2
SheMov-4536e03b7c2f96431aa5aeba61bda0b93896b106.zip
Bugfix: set Margins of CoverEditor to 0
Set margins for mainlayout of Covereditor to 0, otherwise the layout of a widget embedding the covereditor gets cluttered.
-rw-r--r--covereditor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/covereditor.cpp b/covereditor.cpp
index 1c872a0..f7a7120 100644
--- a/covereditor.cpp
+++ b/covereditor.cpp
@@ -33,6 +33,7 @@ CoverEditor::CoverEditor(QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f
mMovie = new QComboBox;
mainLayout->addWidget(l4, 3, 0);
mainLayout->addWidget(mMovie, 3, 1);
+ mainLayout->setContentsMargins(0, 0, 0, 0);
setLayout(mainLayout);
}