Code

fixed up lyrics loading interruption
authorAndreas Obergrusberger <tradiaz@yahoo.de>
Sun, 6 Aug 2006 19:12:36 +0000 (19:12 +0000)
committerAndreas Obergrusberger <tradiaz@yahoo.de>
Sun, 6 Aug 2006 19:12:36 +0000 (19:12 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4576 09075e82-0dd4-0310-85a5-a0d7c8717e4f

ChangeLog
src/screen_lyrics.c

index 4140e0a1e759d2d68d11809aa0344d6be6df4d0b..7c398b972b409b9318c6ca1b7fe0b188e6a641ed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 2006-09-6 Andreas Obergrusberger <tradiaz@yahoo.de>
        * fixed a bug in the lyrics screen that made
          the first texte line not show up
+       * just interrupt running, not upcomming lyrics retrieval
 
 2006-09-5 Andreas Obergrusberger <tradiaz@yahoo.de>
         * the 5th of august... it's dark around me... 
@@ -28,7 +29,7 @@
         * catching signal SIGHUP now
         * host and port of mpd can be specified in the config file now     
         * libmpdclient update (the experimental search screen 
-          is making problems with the it)
+          is making problems with it)
         * enhanced compatibility of Makefile.am for automake       
         * jat fixed a bug that occured when being in a non existing
           directory in the browse screen
index 598fb0d21889be9e5d02e93cfd94b0c9f8b36836..d941967ea595f9244bee5e2e0e0050998d131531 100644 (file)
@@ -496,7 +496,7 @@ lyrics_cmd(screen_t *screen, mpdclient_t *c, command_t cmd)
          g_thread_create(get_lyr, c, FALSE, NULL);     
          return 1;
        case CMD_INTERRUPT:
-         if(lock != 0) lock = 4;
+         if(lock > 1) lock = 4;
          return 1;     
        default:
       break;