096e8a4885
+ Spanish translations from Jose Cedeno + Russian translations from Nikolay Pavlov + French translations from Yann Cézard + ncmpc now supports SIGSTOP and SIGCONT (Ctrl-Z) + ncmpc now hides the cursor on the help screen + ncmpc now can enqueue and play a song from the browse screen (Enter) + configuration changes: o ncmpc no longer supports the old configuration file syntax o the crossfade time can now be definied in (crossfade-time) o support for ncurses mouse events is now optional (enable-mouse) + bugfixes: o fixed short option handling for multiple short options o %time% format fix from Aurelien Foret (use %02d for seconds) o Fixed abort (Ctrl-G) handling when saving playlist o survive select/find operations on empty lists (Niko Tyni)
13 lines
468 B
Text
13 lines
468 B
Text
$NetBSD: patch-ab,v 1.2 2005/03/19 16:54:51 wiz Exp $
|
|
|
|
--- src/screen.c.orig 2005-01-23 18:37:42.000000000 +0100
|
|
+++ src/screen.c
|
|
@@ -293,7 +293,7 @@ paint_status_window(mpdclient_t *c)
|
|
if( c->song && seek_id == c->song->id )
|
|
elapsedTime = seek_target_time;
|
|
g_snprintf(screen->buf, screen->buf_size,
|
|
- " [%i:%02i/%i:%02i]",
|
|
+ " [%i:%02i/%i:%02i] ",
|
|
elapsedTime/60, elapsedTime%60,
|
|
status->totalTime/60, status->totalTime%60 );
|
|
}
|