From 34f3758977b56e72dc07b509d1ed4e215794eee9 Mon Sep 17 00:00:00 2001
From: Mike Newman <MikeGTN@src.gnome.org>
Date: Tue, 27 May 2003 18:05:18 +0000
Subject: Not my day. Fix order of height and width args of textbox in gdialog
 wrapper.

---
 src/gdialog | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'src')

diff --git a/src/gdialog b/src/gdialog
index 488ee5a..092ab13 100644
--- a/src/gdialog
+++ b/src/gdialog
@@ -119,14 +119,14 @@ ARG: while ($argn < $args) {
 		# width and height matter for this one, so get them
 		# and apply the same multipliers as used in gdialog
 
-		$argn++;
-		get_arg;
-		$element = $element * 8;
-		$command .= "--width=\"$element\" ";
 		$argn++;
 		get_arg;
 		$element = $element * 7;
 		$command .= "--height=\"$element\" ";
+		$argn++;
+		get_arg;
+		$element = $element * 8;
+		$command .= "--width=\"$element\" ";
 		last ARG;
 	}
 	
-- 
cgit v1.2.3-2-g168b