]> git.sesse.net Git - vlc/commitdiff
Qt: SPrefs hotkeys: add a line between the widgets.
authorJean-Baptiste Kempf <jb@videolan.org>
Sun, 5 Apr 2009 10:09:54 +0000 (12:09 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sun, 5 Apr 2009 10:09:54 +0000 (12:09 +0200)
modules/gui/qt4/components/simple_preferences.cpp

index 9281a64b1a82a9e699dcd5b76d66ebc20b71cc6e..bc6dcab71e0253e79188f2db435e0bb1dfbdf2a2 100644 (file)
@@ -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 );