Code

po: added Brazilian Portuguese translation
[ncmpc.git] / src / main.c
index 2bc1b624e70767c330bfbaf014d539e2152d97cd..bc2a8c73dc30eb4193cc913556abb40ff658ece0 100644 (file)
@@ -1,17 +1,17 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
-
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
-
+ *
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
@@ -55,7 +55,7 @@
 #include <locale.h>
 #endif
 
-/* time between mpd updates [s] */
+/* time between mpd updates [ms] */
 static const guint update_interval = 500;
 
 #define BUFSIZE 1024
@@ -126,9 +126,9 @@ catch_sigcont(G_GNUC_UNUSED int sig)
 void
 sigstop(void)
 {
-  def_prog_mode();  /* save the tty modes */
-  endwin();         /* end curses mode temporarily */
-  kill(0, SIGSTOP); /* issue SIGSTOP */
+       def_prog_mode();  /* save the tty modes */
+       endwin();         /* end curses mode temporarily */
+       kill(0, SIGSTOP); /* issue SIGSTOP */
 }
 
 static guint timer_sigwinch_id;
@@ -213,7 +213,10 @@ check_reconnect(void);
 static void
 do_mpd_update(void)
 {
-       if (mpdclient_is_connected(mpd))
+       if (mpdclient_is_connected(mpd) &&
+           (mpd->source == NULL || mpd->events != 0 ||
+            (mpd->status != NULL &&
+             mpd_status_get_state(mpd->status) == MPD_STATE_PLAY)))
                mpdclient_update(mpd);
 
 #ifndef NCMPC_MINI
@@ -349,6 +352,7 @@ idle_callback(enum mpd_error error, enum mpd_server_error server_error,
                doupdate();
 
                mpdclient_disconnect(c);
+               screen_update(mpd);
                reconnect_source_id = g_timeout_add(1000, timer_reconnect,
                                                    NULL);
                return;