aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shell-view.c6
2 files changed, 11 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 19b9d139ff..e6a18e7814 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,11 @@
2001-01-17 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-view.c (update_for_current_uri): Display the folder name
+ before "Evolution" instead of after it. Also, display the
+ sub-version string if it was defined when configuring.
+
+2001-01-17 Ettore Perazzoli <ettore@ximian.com>
+
* e-storage-set-view.c (table_drag_drop): Don't emit the
"dnd_action" signal here. Instead, do a `gtk_drag_get_data()' to
retrieve information about the drop.
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c
index 4d3926bb5e..a6aeca1815 100644
--- a/shell/e-shell-view.c
+++ b/shell/e-shell-view.c
@@ -1094,7 +1094,11 @@ update_for_current_uri (EShellView *shell_view)
else
folder_name = e_utf8_to_gtk_string ((GtkWidget *) shell_view, e_folder_get_name (folder));
- window_title = g_strdup_printf (_("Evolution - %s"), folder_name);
+ if (SUB_VERSION[0] == '\0')
+ window_title = g_strdup_printf (_("%s - Evolution %s"), folder_name, VERSION);
+ else
+ window_title = g_strdup_printf (_("%s - Evolution %s [%s]"), folder_name, VERSION, SUB_VERSION);
+
gtk_window_set_title (GTK_WINDOW (shell_view), window_title);
g_free (window_title);
g_free (folder_name);