Changeset fef44fa9395f5d7c7fa1a80c6725f877affa3fad

Show
Ignore:
Timestamp:
06/04/06 00:27:19 (2 years ago)
Author:
Clément Stenac <zorglub@videolan.org>
git-committer:
Clément Stenac <zorglub@videolan.org> 1149373639 +0000
git-parent:

[ccacddbd547138e44ffcdd832f9d92961b965282]

git-author:
Clément Stenac <zorglub@videolan.org> 1149373639 +0000
Message:

Cosmetics

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/components/preferences.cpp

    r04e52ef rfef44fa  
    6060    setColumnCount( 1 ); 
    6161    setIconSize( QSize( ITEM_HEIGHT,ITEM_HEIGHT ) ); 
     62    setAlternatingRowColors( true ); 
     63 
     64    QFont f = font(); 
     65    f.setPointSize( f.pointSize() + 1 ); 
     66    setFont( f ); 
    6267 
    6368#define BI( a,b) QIcon a##_icon = QIcon( QPixmap( b##_xpm )) 
     
    347352            return; 
    348353        } 
     354        vlc_list_release( p_list ); 
    349355    } 
    350356 
  • modules/gui/qt4/dialogs/prefs_dialog.cpp

    rccacddb rfef44fa  
    4343     resize( 800, 450 ); 
    4444 
     45     QPalette plt( palette() ); 
     46     plt.setColor( QPalette::Active, QPalette::Highlight, Qt::gray ); 
     47     setPalette( plt ); 
     48 
    4549     advanced_tree = NULL; 
    4650     simple_tree = NULL; 
     
    5458     QHBoxLayout *tl = new QHBoxLayout(); 
    5559     tl->setSpacing( 3 ); 
    56      small = new QRadioButton( "Common", types ); 
     60     small = new QRadioButton( "Basic", types ); 
    5761     all = new QRadioButton( "All", types ); 
    5862     tl->addWidget( small );