summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Newman <MikeGTN@src.gnome.org>2003-05-27 18:05:18 +0000
committerMike Newman <MikeGTN@src.gnome.org>2003-05-27 18:05:18 +0000
commit34f3758977b56e72dc07b509d1ed4e215794eee9 (patch)
tree25997539ab46300ad62672182e7cde10468f224f /src
parent15c5b0f48ee2114b5a9f4ad25da258fc34065320 (diff)
Not my day. Fix order of height and width args of textbox in gdialog wrapper.
Diffstat (limited to 'src')
-rw-r--r--src/gdialog8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gdialog b/src/gdialog
index 488ee5a..092ab13 100644
--- a/src/gdialog
+++ b/src/gdialog
@@ -121,12 +121,12 @@ ARG: while ($argn < $args) {
$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;
}