Merge lp:~alexlauni/unity-lens-music/play-after-queuing-834933 into lp:unity-lens-music
Proposed by
Alex Launi
Status: | Merged |
---|---|
Merged at revision: | 47 |
Proposed branch: | lp:~alexlauni/unity-lens-music/play-after-queuing-834933 |
Merge into: | lp:unity-lens-music |
Diff against target: |
30 lines (+4/-3) 1 file modified
src/banshee-scope.vala (+4/-3) |
To merge this branch: | bzr merge lp:~alexlauni/unity-lens-music/play-after-queuing-834933 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Mikkel Kamstrup Erlandsen (community) | Approve | ||
Review via email:
|
Description of the change
Changes the banshee exec string to banshee --play-enqueued
To post a comment you must log in.
review approve
Nice.
Pro tip: To make sure your debug message matches the exec array you
can do something like:
- debug (@"Spawning banshee --play $uri");
+ debug (@"Spawning '%s'", string.joinv(" ", exec));