Switch to side-by-side view

--- a/GUI/playlist/view/ContextMenu.cpp
+++ b/GUI/playlist/view/ContextMenu.cpp
@@ -31,18 +31,18 @@
     QMenu(parent)
 {
 
-    _info_action = new QAction(QIcon(Helper::getIconPath() + "info_small.png"),
+    _info_action = new QAction(QIcon(Helper::getIconPath("info_small.png")),
                                tr("Info"), this);
-    _edit_action = new QAction(QIcon(Helper::getIconPath() + "edit.png"), 
+    _edit_action = new QAction(QIcon(Helper::getIconPath("edit.png")),
                                tr("Edit"), this);
-    _remove_action = new QAction(QIcon(Helper::getIconPath() + "delete.png"), 
+    _remove_action = new QAction(QIcon(Helper::getIconPath("delete.png")),
                                  tr("Remove"), this);
-    _delete_action = new QAction(QIcon(Helper::getIconPath() + "delete.png"), 
+    _delete_action = new QAction(QIcon(Helper::getIconPath("delete.png")),
                                  tr("Delete"), this);
     _play_next_action = 
-        new QAction(QIcon(Helper::getIconPath() + "fwd_orange.png"), 
+        new QAction(QIcon(Helper::getIconPath("fwd_orange.png")),
                     tr("Play next"), this);
-    _append_action = new QAction(QIcon(Helper::getIconPath() + "append.png"), 
+    _append_action = new QAction(QIcon(Helper::getIconPath("append.png")),
                                  tr("Append"), this);
     _sort_tno_action = new QAction(tr("Sort by track number"), this);
 }