handle the resolution unit correctly, fixes bug #170200.

2005-03-13  Sven Neumann  <sven@gimp.org>

	* app/dialogs/print-size-dialog.c (print_size_dialog_response):
	handle the resolution unit correctly, fixes bug #170200.
This commit is contained in:
Sven Neumann 2005-03-13 19:39:16 +00:00 committed by Sven Neumann
parent accf4eace6
commit 4d779322a6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-03-13 Sven Neumann <sven@gimp.org>
* app/dialogs/print-size-dialog.c (print_size_dialog_response):
handle the resolution unit correctly, fixes bug #170200.
2005-03-13 Michael Natterer <mitch@gimp.org>
* tools/pdbgen/pdb/drawable_transform.pdb

View File

@ -304,8 +304,8 @@ print_size_dialog_response (GtkWidget *dialog,
case GTK_RESPONSE_OK:
private->callback (dialog,
private->image,
gimp_size_entry_get_value (entry, 0),
gimp_size_entry_get_value (entry, 1),
gimp_size_entry_get_refval (entry, 0),
gimp_size_entry_get_refval (entry, 1),
gimp_size_entry_get_unit (entry),
private->user_data);
break;