Commit 8ee02a4b authored by Claudio Valerio's avatar Claudio Valerio

multiple layout bug fixed

parent 6cafdcfc
...@@ -56,7 +56,7 @@ UBMediaWidget::UBMediaWidget(eMediaType type, QWidget *parent, const char *name) ...@@ -56,7 +56,7 @@ UBMediaWidget::UBMediaWidget(eMediaType type, QWidget *parent, const char *name)
mpSlider->setMinimum(0); mpSlider->setMinimum(0);
mpSlider->setMaximum(0); mpSlider->setMaximum(0);
mpSeekerLayout = new QHBoxLayout(this); mpSeekerLayout = new QHBoxLayout();
mpSeekerLayout->addWidget(mpPlayStopButton, 0); mpSeekerLayout->addWidget(mpPlayStopButton, 0);
mpSeekerLayout->addWidget(mpPauseButton, 0); mpSeekerLayout->addWidget(mpPauseButton, 0);
mpSeekerLayout->addWidget(mpSlider, 1); mpSeekerLayout->addWidget(mpSlider, 1);
...@@ -144,9 +144,9 @@ void UBMediaWidget::hideEvent(QHideEvent* event) ...@@ -144,9 +144,9 @@ void UBMediaWidget::hideEvent(QHideEvent* event)
*/ */
void UBMediaWidget::createMediaPlayer() void UBMediaWidget::createMediaPlayer()
{ {
mpMediaContainer = new QWidget(this); mpMediaContainer = new QWidget();
mpMediaContainer->setObjectName("UBMediaVideoContainer"); mpMediaContainer->setObjectName("UBMediaVideoContainer");
mMediaLayout = new QHBoxLayout(this); mMediaLayout = new QHBoxLayout();
mpMediaContainer->setLayout(mMediaLayout); mpMediaContainer->setLayout(mMediaLayout);
if(eMediaType_Video == mType){ if(eMediaType_Video == mType){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment