In song list change row-activate to open, not play
authorQball Cow <qball@sarine.nl>
Sat, 30 Jan 2010 16:04:25 +0000 (17:04 +0100)
committerQball Cow <qball@sarine.nl>
Sat, 30 Jan 2010 16:04:25 +0000 (17:04 +0100)
src/browsers/gmpc-metadata-browser2.vala

index 3780387..373ff69 100644 (file)
@@ -1695,7 +1695,8 @@ public class  Gmpc.MetadataBrowser : Gmpc.Plugin.Base, Gmpc.Plugin.BrowserIface,
             model.get(iter, 0, out song, -1);
             if(song != null)
             {
-                Gmpc.MpdInteraction.play_path(song.file);
+                    this.set_song(song);
+//                Gmpc.MpdInteraction.play_path(song.file);
             }
         }