Commit e67328f2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4: larger fullscreen controller.

parent ce1b17e8
......@@ -25,11 +25,13 @@ Windows port:
* Fixed sensitivity of Fullscreen Controller
* Fixed error messages on startup when VLC wasn't correctly uninstalled
before installation
* Fix showing of controller when returning from fullscreen playback
Qt4 interface:
* Added Faster/Slower buttons to the controller panel
* Added Faster/Slower icons to the controller panel
* Fixed lost playlist columns when switching the playlist view
* Added needed options to Simple preferences (to avoid NVIDIA drivers issues)
* Added time label in the Fullscreen controller
Changes between 0.9.1 and 0.9.2:
......
......@@ -1035,10 +1035,9 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
/* First line */
slider->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum);
slider->setMinimumWidth( 300 );
fsLayout->addWidget( slowerButton, 0, 0 );
fsLayout->addWidget( slider, 0, 1, 1, 9 );
fsLayout->addWidget( fasterButton, 0, 10 );
fsLayout->addWidget( slider, 0, 1, 1, 11 );
fsLayout->addWidget( fasterButton, 0, 12 );
/* Second line */
fsLayout->addWidget( playButton, 1, 0, 1, 2 );
......@@ -1055,7 +1054,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
fsLayout->addWidget( timeLabel, 1, 8 );
fsLayout->addWidget( volMuteLabel, 1, 9 );
fsLayout->addWidget( volumeSlider, 1, 10,1, 2 );
fsLayout->addWidget( volumeSlider, 1, 10, 1, 2 );
/* hiding timer */
p_hideTimer = new QTimer( this );
......@@ -1086,7 +1085,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
fullscreenButton->setIcon( QIcon( ":/defullscreen" ) );
vlc_mutex_init_recursive( &lock );
setMinimumWidth( 450 );
setMinimumWidth( 600 );
}
FullscreenControllerWidget::~FullscreenControllerWidget()
......
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