diff options
author | Arno <am@disconnect.de> | 2010-05-23 11:03:14 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-05-23 11:03:14 +0200 |
commit | 8827510ec55eda169340b5414bd60eb3ba3bfb79 (patch) | |
tree | 3168a6a1dab6c80a6187747d9e2fb2a4598da8b4 /actorwidget.cpp | |
parent | 2380d2c97c8c95c353715c50b02a0f9fa57adc48 (diff) | |
download | SheMov-8827510ec55eda169340b5414bd60eb3ba3bfb79.tar.gz SheMov-8827510ec55eda169340b5414bd60eb3ba3bfb79.tar.bz2 SheMov-8827510ec55eda169340b5414bd60eb3ba3bfb79.zip |
Bugfix: margins in ListEditor
Fix layout of AddMovieWizard. The ListEditor-Widget must have margins
set to 0 to be laid out properly in a QWizardPage.
Diffstat (limited to 'actorwidget.cpp')
-rw-r--r-- | actorwidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actorwidget.cpp b/actorwidget.cpp index c887088..2a98dfd 100644 --- a/actorwidget.cpp +++ b/actorwidget.cpp @@ -38,6 +38,7 @@ ActorWidget::ActorWidget(QWidget *parent) : QWidget(parent) { mainLayout->addWidget(l1); mainLayout->addWidget(mView); mainLayout->addLayout(buttonLayout); + mainLayout->setContentsMargins(0, 0, 0, 0); setLayout(mainLayout); } |