From e5c36619581abdd2893a340eded806f4fd622046 Mon Sep 17 00:00:00 2001 From: Anders Jonsson Date: Sun, 30 Nov 2025 23:13:21 +0100 Subject: [PATCH] plug-ins: ps default unit is millimeter Default values for width, height and offsets for ps export are based on the size of an A4 paper in millimeters, so set the unit default to millimeters as well. --- plug-ins/common/file-ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/file-ps.c b/plug-ins/common/file-ps.c index 3bb22a2e8c..ff725945bd 100644 --- a/plug-ins/common/file-ps.c +++ b/plug-ins/common/file-ps.c @@ -552,7 +552,7 @@ ps_create_procedure (GimpPlugIn *plug_in, gimp_choice_new_with_values ("inch", 0, _("Inch"), NULL, "millimeter", 1, _("Millimeter"), NULL, NULL), - "inch", G_PARAM_READWRITE); + "millimeter", G_PARAM_READWRITE); gimp_procedure_add_boolean_argument (procedure, "keep-ratio", _("_Keep aspect ratio"),