summaryrefslogtreecommitdiff
path: root/src/gdialog
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/gdialog
parentOops - committed with debugging instrumentation which would confuse scripts! (diff)
downloadzenity-34f3758977b56e72dc07b509d1ed4e215794eee9.tar.gz
zenity-34f3758977b56e72dc07b509d1ed4e215794eee9.tar.bz2
zenity-34f3758977b56e72dc07b509d1ed4e215794eee9.zip
Not my day. Fix order of height and width args of textbox in gdialog wrapper.
Diffstat (limited to 'src/gdialog')
-rw-r--r--src/gdialog8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gdialog b/src/gdialog
index 488ee5a0..092ab13b 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;
}
bgstack15