[vlc-devel] commit: Fix a very small resizing issue of Open Dialog : Reference: http:// forum.videolan.org/viewtopic.php?f=14&t=48946 (Jean-Baptiste Kempf )
    git version control 
    git at videolan.org
       
    Sat Aug  9 00:49:30 CEST 2008
    
    
  
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Aug  8 15:51:45 2008 -0700| [e4497f8aae50dc568f3e83b0fdb1162aed066526] | committer: Jean-Baptiste Kempf 
Fix a very small resizing issue of Open Dialog : Reference: http://forum.videolan.org/viewtopic.php?f=14&t=48946
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e4497f8aae50dc568f3e83b0fdb1162aed066526
---
 modules/gui/qt4/dialogs/open.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/dialogs/open.cpp b/modules/gui/qt4/dialogs/open.cpp
index a9ac6c0..b3dbafc 100644
--- a/modules/gui/qt4/dialogs/open.cpp
+++ b/modules/gui/qt4/dialogs/open.cpp
@@ -77,7 +77,7 @@ OpenDialog::OpenDialog( QWidget *parent,
     ui.setupUi( this );
     setWindowTitle( qtr( "Open" ) );
     /* resize( 410, 600 ); */
-    setMinimumSize( 520, 460 );
+    setMinimumSize( 520, 490 );
 
     /* Tab definition and creation */
     fileOpenPanel    = new FileOpenPanel( ui.Tab, p_intf );
    
    
More information about the vlc-devel
mailing list