[gthumb] window title: separate the filename and position with a dash



commit fcc51e7081122fb06713ba0b36df3f24e9cc0075
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Sun Jul 17 10:57:39 2011 +0200

    window title: separate the filename and position with a dash

 gthumb/gth-browser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gthumb/gth-browser.c b/gthumb/gth-browser.c
index a210726..a2c7940 100644
--- a/gthumb/gth-browser.c
+++ b/gthumb/gth-browser.c
@@ -512,7 +512,7 @@ gth_browser_update_title (GthBrowser *browser)
 		pos = gth_file_store_get_pos (file_store, browser->priv->current_file->file);
 		if (pos >= 0) {
 			browser->priv->current_file_position = pos;
-			g_string_append_printf (title, " (%d/%d)", browser->priv->current_file_position + 1, browser->priv->n_visibles);
+			g_string_append_printf (title, " - %d/%d", browser->priv->current_file_position + 1, browser->priv->n_visibles);
 		}
 	}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]