mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
tools/gst-launch.c: More space on the left for the tag names, to cater for the 'extended comment' tag (not touching t...
Original commit message from CVS: * tools/gst-launch.c: (print_tag): More space on the left for the tag names, to cater for the 'extended comment' tag (not touching the string for the first line since it's translated).
This commit is contained in:
parent
c4ff920a76
commit
f7c34e5c14
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tools/gst-launch.c: (print_tag):
|
||||
More space on the left for the tag names, to cater
|
||||
for the 'extended comment' tag (not touching the
|
||||
string for the first line since it's translated).
|
||||
|
||||
2006-08-15 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* libs/gst/check/gstcheck.h:
|
||||
|
|
|
@ -266,9 +266,9 @@ print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
|
|||
}
|
||||
|
||||
if (i == 0) {
|
||||
g_print ("%15s: %s\n", gst_tag_get_nick (tag), str);
|
||||
g_print ("%16s: %s\n", gst_tag_get_nick (tag), str);
|
||||
} else {
|
||||
g_print (" : %s\n", str);
|
||||
g_print ("%16s: %s\n", "", str);
|
||||
}
|
||||
|
||||
g_free (str);
|
||||
|
|
Loading…
Reference in a new issue