Commit b5277240 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Preferences: don't show empty boxes ('zoom' box bug)

parent ba8f5af2
...@@ -461,6 +461,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -461,6 +461,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
i_line++; i_line++;
} }
box = new QGroupBox( qtr( p_item->psz_text ) ); box = new QGroupBox( qtr( p_item->psz_text ) );
box->hide();
boxlayout = new QGridLayout(); boxlayout = new QGridLayout();
} }
/* Only one hotkey control */ /* Only one hotkey control */
...@@ -494,6 +495,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -494,6 +495,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
if( box ) if( box )
{ {
box->setLayout( boxlayout ); box->setLayout( boxlayout );
box->show();
layout->addWidget( box, i_line, 0, 1, -1 ); layout->addWidget( box, i_line, 0, 1, -1 );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment