[vlc-devel] commit: Smaller Play/Pause button. Bigger FS controller ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Fri Sep 19 00:01:41 CEST 2008
vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Thu Sep 18 15:02:09 2008 -0700| [ead5022145c23cd2416a07083267fa11ff90d338] | committer: Jean-Baptiste Kempf
Smaller Play/Pause button. Bigger FS controller
(cherry picked from commit 4a982bfe0bc473c780424bd941e3aeaf69732842)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ead5022145c23cd2416a07083267fa11ff90d338
---
modules/gui/qt4/components/interface_widgets.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index e47772d..204346f 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -644,9 +644,9 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
/* Play */
playButton = new QPushButton;
playButton->setSizePolicy( sizePolicy );
- playButton->setMaximumSize( QSize( 36, 36 ) );
- playButton->setMinimumSize( QSize( 36, 36 ) );
- playButton->setIconSize( QSize( 30, 30 ) );
+ playButton->setMaximumSize( QSize( 32, 32 ) );
+ playButton->setMinimumSize( QSize( 32, 32 ) );
+ playButton->setIconSize( QSize( 26, 26 ) );
playButton->setFocusPolicy( Qt::NoFocus );
/** Prev + Stop + Next Block **/
@@ -1032,7 +1032,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
/* First line */
slider->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum);
- slider->setMinimumWidth( 220 );
+ slider->setMinimumWidth( 300 );
fsLayout->addWidget( slowerButton, 0, 0 );
fsLayout->addWidget( slider, 0, 1, 1, 9 );
fsLayout->addWidget( fasterButton, 0, 10 );
More information about the vlc-devel
mailing list