[Goodies-commits] r6897 - in xfmpc/trunk: . src

Mike Massonnet mmassonnet at xfce.org
Sat Mar 14 09:57:34 CET 2009


Author: mmassonnet
Date: 2009-03-14 08:57:33 +0000 (Sat, 14 Mar 2009)
New Revision: 6897

Modified:
   xfmpc/trunk/ChangeLog
   xfmpc/trunk/src/interface.c
   xfmpc/trunk/src/playlist.c
Log:
Title not refreshed at first run

Modified: xfmpc/trunk/ChangeLog
===================================================================
--- xfmpc/trunk/ChangeLog	2009-03-14 08:41:57 UTC (rev 6896)
+++ xfmpc/trunk/ChangeLog	2009-03-14 08:57:33 UTC (rev 6897)
@@ -1,10 +1,16 @@
-2009-03-13	Mike Massonnet <mmassonnet at xfce.org>
+2009-03-14	Mike Massonnet <mmassonnet at xfce.org>
 
+Title not refreshed at first run
+	* src/mpdclient.c(xfmpc_interface_init):
+	  - Set refresh_title to TRUE (bug #4975)
+
+2009-03-14	Mike Massonnet <mmassonnet at xfce.org>
+
 Add position of the track in the playlist
 	* src/playlist.c:
 	  - Display the position of track in the playlist on the left
 
-2009-03-13	Mike Massonnet <mmassonnet at xfce.org>
+2009-03-14	Mike Massonnet <mmassonnet at xfce.org>
 
 Add about dialog in the context menu
 	* src/extended-interface.c:
@@ -15,7 +21,7 @@
 	* po/*.*:
 	  - make update-po (yet again)
 
-2009-03-13	Mike Massonnet <mmassonnet at xfce.org>
+2009-03-14	Mike Massonnet <mmassonnet at xfce.org>
 
 Support i18n in the song info dialog
 	* src/song-dialog.c:

Modified: xfmpc/trunk/src/interface.c
===================================================================
--- xfmpc/trunk/src/interface.c	2009-03-14 08:41:57 UTC (rev 6896)
+++ xfmpc/trunk/src/interface.c	2009-03-14 08:57:33 UTC (rev 6897)
@@ -111,6 +111,7 @@
   gtk_container_set_border_width (GTK_CONTAINER (interface), BORDER);
   interface->preferences = xfmpc_preferences_get ();
   interface->mpdclient = xfmpc_mpdclient_get ();
+  priv->refresh_title = TRUE; /* bug #4975 */
 
   /* === Interface widgets === */
   GtkWidget *image = gtk_image_new_from_stock (GTK_STOCK_MEDIA_PREVIOUS, GTK_ICON_SIZE_BUTTON);

Modified: xfmpc/trunk/src/playlist.c
===================================================================
--- xfmpc/trunk/src/playlist.c	2009-03-14 08:41:57 UTC (rev 6896)
+++ xfmpc/trunk/src/playlist.c	2009-03-14 08:57:33 UTC (rev 6897)
@@ -196,7 +196,7 @@
   gtk_tree_view_set_model (GTK_TREE_VIEW (priv->treeview), GTK_TREE_MODEL (priv->filter));
   g_object_unref (priv->filter);
 
-  /* Column "length" */
+  /* Column "position" */
   GtkCellRenderer *cell = gtk_cell_renderer_text_new ();
   g_object_set (G_OBJECT (cell),
                 "xalign", 1.0,




More information about the Goodies-commits mailing list