Bug 559081 – JPEG Save dialog preview should adjust size units

2008-11-03  Sven Neumann  <sven@gimp.org>

	Bug 559081 – JPEG Save dialog preview should adjust size units

	* plug-ins/file-jpeg/jpeg-save.c: use 
g_format_size_for_display()
	to display the JPEG file size.


svn path=/trunk/; revision=27532
This commit is contained in:
Sven Neumann 2008-11-03 16:39:20 +00:00 committed by Sven Neumann
parent 740ab5e633
commit c8375c0113
2 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,10 @@
2008-11-03 Sven Neumann <sven@gimp.org>
Bug 559081 JPEG Save dialog preview should adjust size units
* plug-ins/file-jpeg/jpeg-save.c: use g_format_size_for_display()
to display the JPEG file size.
2008-11-03 Michael Natterer <mitch@gimp.org>
* app/core/gimpitem.[ch]: renamed

View File

@ -192,14 +192,14 @@ background_jpeg_save (PreviewPersistent *pp)
/* display the preview stuff */
if (!pp->abort_me)
{
struct stat buf;
gchar temp[128];
struct stat buf;
gchar *text;
g_stat (pp->file_name, &buf);
g_snprintf (temp, sizeof (temp),
_("File size: %02.01f kB"),
(gdouble) (buf.st_size) / 1024.0);
gtk_label_set_text (GTK_LABEL (preview_size), temp);
text = g_strdup_printf (_("File size: %s"),
g_format_size_for_display (buf.st_size));
gtk_label_set_text (GTK_LABEL (preview_size), text);
g_free (text);
/* and load the preview */
load_image (pp->file_name, GIMP_RUN_NONINTERACTIVE, TRUE, NULL);