[vlc-commits] Qt: reposition the separator in the playlist popup menu

Jean-Baptiste Kempf git at videolan.org
Fri Oct 21 15:30:49 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Oct 20 19:10:40 2011 +0200| [1dbb99880cc2666cefa9f4d44873018254f683b1] | committer: Jean-Baptiste Kempf

Qt: reposition the separator in the playlist popup menu

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1dbb99880cc2666cefa9f4d44873018254f683b1
---

 .../gui/qt4/components/playlist/playlist_model.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/qt4/components/playlist/playlist_model.cpp b/modules/gui/qt4/components/playlist/playlist_model.cpp
index 8f5da18..c40ea4d 100644
--- a/modules/gui/qt4/components/playlist/playlist_model.cpp
+++ b/modules/gui/qt4/components/playlist/playlist_model.cpp
@@ -956,9 +956,9 @@ bool PLModel::popup( const QModelIndex & index, const QPoint &point, const QMode
             menu.addAction( qtr( "Add to playlist"), this, SLOT( popupAddToPlaylist() ) );
         menu.addAction( QIcon( ":/buttons/playlist/playlist_remove" ),
                         qtr(I_POP_DEL), this, SLOT( popupDel() ) );
-        menu.addSeparator();
     }
 
+    menu.addSeparator();
     /* Playlist sorting */
     if( !sortingMenu )
     {



More information about the vlc-commits mailing list