Commit 7f7fc9ea authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: SPrefs hotkeys: add a line between the widgets.

parent 2d0e1cfb
......@@ -558,6 +558,13 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
controls.append( control );
line++;
QFrame *sepline = new QFrame;
sepline->setFrameStyle(QFrame::HLine | QFrame::Sunken);
gLayout->addWidget( sepline, line, 0, 1, -1 );
line++;
p_config = config_FindConfig( VLC_OBJECT(p_intf), "hotkeys-mousewheel-mode" );
control = new IntegerListConfigControl( VLC_OBJECT(p_intf),
p_config, false, this, gLayout, line );
......
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