[gimp] app: make the "exported to foo" string in the quit dialog nicer
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: make the "exported to foo" string in the quit dialog nicer
- Date: Thu, 7 Nov 2013 11:49:44 +0000 (UTC)
commit 936780676bcf66c8fe89c511f36173bb43f270e4
Author: Michael Natterer <mitch gimp org>
Date: Thu Nov 7 12:49:03 2013 +0100
app: make the "exported to foo" string in the quit dialog nicer
app/dialogs/quit-dialog.c | 29 ++++++++++++++++++++---------
1 files changed, 20 insertions(+), 9 deletions(-)
---
diff --git a/app/dialogs/quit-dialog.c b/app/dialogs/quit-dialog.c
index 5201bb7..8cbea5f 100644
--- a/app/dialogs/quit-dialog.c
+++ b/app/dialogs/quit-dialog.c
@@ -298,25 +298,36 @@ quit_close_all_dialog_name_cell_func (GtkTreeViewColumn *tree_column,
if (gimp_image_is_export_dirty (image))
{
g_object_set (cell,
- "text", name,
+ "markup", NULL,
+ "text", name,
NULL);
}
else
{
- const gchar *exported_uri = gimp_image_get_exported_uri (image);
- gchar *text;
+ const gchar *uri;
+ gchar *escaped_name;
+ gchar *escaped_uri;
+ gchar *markup;
- if (! exported_uri)
- exported_uri = gimp_image_get_imported_uri (image);
+ uri = gimp_image_get_exported_uri (image);
+ if (! uri)
+ uri = gimp_image_get_imported_uri (image);
- text = g_strdup_printf (_("%s\nThe image has been exported to '%s'"),
- name, exported_uri);
+ escaped_name = g_markup_escape_text (name, -1);
+ escaped_uri = g_markup_escape_text (uri, -1);
+
+ markup = g_strdup_printf (_("%s\n<i>Exported to %s</i>"),
+ escaped_name, escaped_uri);
+
+ g_free (escaped_name);
+ g_free (escaped_uri);
g_object_set (cell,
- "text", text,
+ "text", NULL,
+ "markup", markup,
NULL);
- g_free (text);
+ g_free (markup);
}
g_object_unref (renderer);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]