~ilja-smoli/do/gtg

« back to all changes in this revision

Viewing changes to Rhythmbox/src/PauseAction.cs

  • Committer: Robert Dyer
  • Date: 2009-11-02 01:39:22 UTC
  • Revision ID: psybers@gmail.com-20091102013922-gu8i6o6zhubtktkw
fix bug 432567 - rhythmbox wont (un)pause

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modifierItems)
54
54
                {
55
55
                        new Thread ((ThreadStart) delegate {
56
 
                                Rhythmbox.Client ("--pause --no-start");
 
56
                                Rhythmbox.Client ("--play-pause --no-start");
57
57
                        }).Start ();
58
58
                        return null;
59
59
                }