Commit 39670df9 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fullscreen controller button reordering to fix consistency with main toolbar...

Fullscreen controller button reordering to fix consistency with main toolbar (complaints from forum).
parent 0b14bd87
...@@ -910,25 +910,22 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, ...@@ -910,25 +910,22 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
QGridLayout *fsLayout = new QGridLayout( this ); QGridLayout *fsLayout = new QGridLayout( this );
fsLayout->setLayoutMargins( 5, 1, 5, 1, 5 ); fsLayout->setLayoutMargins( 5, 1, 5, 1, 5 );
fsLayout->addWidget( slowerButton, 0, 0 ); /* First line */
slider->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum); slider->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum);
fsLayout->addWidget( slowerButton, 0, 0 );
fsLayout->addWidget( slider, 0, 1, 1, 6 ); fsLayout->addWidget( slider, 0, 1, 1, 6 );
fsLayout->addWidget( fasterButton, 0, 7 ); fsLayout->addWidget( fasterButton, 0, 7 );
fsLayout->addWidget( volMuteLabel, 1, 0); fsLayout->addWidget( playButton, 1, 0 );
fsLayout->addWidget( volumeSlider, 1, 1 ); fsLayout->addLayout( controlButLayout, 1, 1 );
fsLayout->addLayout( controlButLayout, 1, 2 );
fsLayout->addWidget( playButton, 1, 3 );
fsLayout->addWidget( discFrame, 1, 4 );
fsLayout->addWidget( telexFrame, 1, 5 );
fsLayout->addWidget( advControls, 1, 6, Qt::AlignVCenter ); fsLayout->addWidget( discFrame, 1, 2 );
fsLayout->addWidget( telexFrame, 1, 3 );
fsLayout->addWidget( advControls, 1, 4, Qt::AlignVCenter );
fsLayout->addWidget( fullscreenButton, 1, 5 );
fsLayout->addWidget( fullscreenButton, 1, 7 ); fsLayout->addWidget( volMuteLabel, 1, 6);
fsLayout->addWidget( volumeSlider, 1, 7 );
/* hiding timer */ /* hiding timer */
p_hideTimer = new QTimer( this ); p_hideTimer = new QTimer( this );
......
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