[vlc-devel] commit: Use the same order for buttons in the fullscreen interface than in the normal interface (there' s still an extra space between the next and fullscreen toggle buttons ... don't know how to remove it) (Antoine Cellerier )

git version control git at videolan.org
Sat Aug 23 17:36:09 CEST 2008


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Sat Aug 23 17:39:48 2008 +0200| [4abfe2a0f460a860415d717f2d2ced98aad18e12] | committer: Antoine Cellerier 

Use the same order for buttons in the fullscreen interface than in the normal interface (there's still an extra space between the next and fullscreen toggle buttons ... don't know how to remove it)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4abfe2a0f460a860415d717f2d2ced98aad18e12
---

 modules/gui/qt4/components/interface_widgets.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index 59207cd..66b75b3 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -1000,8 +1000,8 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i,
 
     fsLayout->addWidget( discFrame, 1, 3 );
     fsLayout->addWidget( telexFrame, 1, 4 );
-    fsLayout->addWidget( advControls, 1, 5, Qt::AlignVCenter );
-    fsLayout->addWidget( fullscreenButton, 1, 6 );
+    fsLayout->addWidget( fullscreenButton, 1, 5 );
+    fsLayout->addWidget( advControls, 1, 6, Qt::AlignVCenter );
 
     fsLayout->addWidget( volMuteLabel, 1, 7 );
     fsLayout->addWidget( volumeSlider, 1, 8, 1, 2 );




More information about the vlc-devel mailing list