Do not place EasyCommand dialog center on playlist window. this would cause undesired...
authorQball Cow <qball@sarine.nl>
Sat, 30 Jan 2010 15:13:37 +0000 (16:13 +0100)
committerQball Cow <qball@sarine.nl>
Sat, 30 Jan 2010 15:13:37 +0000 (16:13 +0100)
remote/main.c
src/vala/gmpc-easy-command.vala

index 891f836..366a4a0 100644 (file)
@@ -85,7 +85,7 @@ int main ( int argc, char **argv )
         },
         {
             "easycommand",     'e', 0, G_OPTION_ARG_STRING, &easycommand,
-            "Give the running gmpc a easycommand to play", NULL
+            "Send an easy command query to the running gmpc.", NULL
         },
         {
 
index a05f343..bd762d2 100644 (file)
@@ -294,11 +294,12 @@ public class Gmpc.Easy.Command: Gmpc.Plugin.Base {
                        window.app_paintable = true;
                        window.expose_event += popup_expose_handler;
 
+/*                     Disable this as often gmpc is moved and bring to top, not desirable..
                        if (!Gmpc.Playlist.is_hidden()) {
                                window.set_transient_for(Gmpc.Playlist.get_window());
                                window.position = Gtk.WindowPosition.CENTER_ON_PARENT;
                        }
-
+*/
                        /* setup entry */
                        entry.set_completion(this.completion);
                        entry.activate += this.activate;