summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-08-22 11:06:47 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-09-29 23:05:22 -0400
commit3fc0c2a8eadf4473264bdef987790899566c9f92 (patch)
tree03740ee49fd723439062b711d3e2e8317db245c8
parent67b4f8ea75e5b0a281099239e12f64b42c1cf2fb (diff)
downloadgtk+-3fc0c2a8eadf4473264bdef987790899566c9f92.tar.gz
GtkVolumeButton: Better typography
Use a small space before %. This matches what we do for percentages elsewhere. https://bugzilla.gnome.org/show_bug.cgi?id=735192
-rw-r--r--gtk/gtkvolumebutton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkvolumebutton.c b/gtk/gtkvolumebutton.c
index d4849f5e31..f40649239a 100644
--- a/gtk/gtkvolumebutton.c
+++ b/gtk/gtkvolumebutton.c
@@ -246,7 +246,7 @@ cb_query_tooltip (GtkWidget *button,
* Translate the "%d" to "%Id" if you want to use localised digits,
* or otherwise translate the "%d" to "%d".
*/
- str = g_strdup_printf (C_("volume percentage", "%d %%"), percent);
+ str = g_strdup_printf (C_("volume percentage", "%d %%"), percent);
}
gtk_tooltip_set_text (tooltip, str);