X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fdialogs%2Fpreferences.cpp;h=b22288cf89f8deca0947b28921d78d4762ebaf73;hb=ef1dfd89f1454c73f7c5d47788d319e7f881bc52;hp=142c358aa179ae6274a0341f12ba8726b57ca393;hpb=a6423aab59e5a9e280d3c49630e5edf9f1265911;p=vlc diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp index 142c358aa1..b22288cf89 100644 --- a/modules/gui/qt4/dialogs/preferences.cpp +++ b/modules/gui/qt4/dialogs/preferences.cpp @@ -68,8 +68,10 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf ) QHBoxLayout *types_l = new QHBoxLayout; types_l->setSpacing( 3 ); types_l->setMargin( 3 ); small = new QRadioButton( qtr( "Simple" ), types ); + small->setToolTip( qtr( "Switch to simple preferences" ) ); types_l->addWidget( small ); all = new QRadioButton( qtr("All"), types ); types_l->addWidget( all ); + all->setToolTip( qtr( "Switch to complete preferences" ) ); types->setLayout( types_l ); small->setChecked( true );