X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fdialogs%2Fpreferences.cpp;h=204ad43aae50c2f48f80acc1cf60e26c12447886;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=540e455bdf77c75838c23b6aed4242aaa64e516f;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp index 540e455bdf..204ad43aae 100644 --- a/modules/gui/qt4/dialogs/preferences.cpp +++ b/modules/gui/qt4/dialogs/preferences.cpp @@ -61,7 +61,7 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) types->setAlignment( Qt::AlignHCenter ); QHBoxLayout *types_l = new QHBoxLayout(0); types_l->setSpacing( 3 ); types_l->setMargin( 3 ); - small = new QRadioButton( qtr("Basic"), types ); + small = new QRadioButton( qtr("Basic"), types ); types_l->addWidget( small ); all = new QRadioButton( qtr("All"), types ); types_l->addWidget( all ); types->setLayout( types_l ); @@ -260,7 +260,7 @@ void PrefsDialog::apply() advanced_tree->applyAll(); config_SaveConfigFile( p_intf, NULL ); - /* Delete the other panel in order to force its reload after clicking + /* Delete the other panel in order to force its reload after clicking on apply - UGLY but will work for now. */ if( simple_panel && simple_panel->isVisible() && advanced_panel ) {