diff options
author | Mike Newman <MikeGTN@src.gnome.org> | 2003-05-27 17:56:51 +0000 |
---|---|---|
committer | Mike Newman <MikeGTN@src.gnome.org> | 2003-05-27 17:56:51 +0000 |
commit | a7673b42d20f5cbacd61b4dd85408e54aafd135d (patch) | |
tree | b3dea642dc0cdba50e3a8d73b5d69a514ccc7276 /src/gdialog | |
parent | Fix typo in gdialog wrapper. Sensitize OK button in progress when 100% reached. (diff) | |
download | zenity-a7673b42d20f5cbacd61b4dd85408e54aafd135d.tar.gz zenity-a7673b42d20f5cbacd61b4dd85408e54aafd135d.tar.bz2 zenity-a7673b42d20f5cbacd61b4dd85408e54aafd135d.zip |
Fix an indentation weirdness in calendar.c
Take notice of width and height in gdialog wrapper for textbox, because
the original gdialog also did.
Diffstat (limited to 'src/gdialog')
-rw-r--r-- | src/gdialog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gdialog b/src/gdialog index 20322c77..02ac6a91 100644 --- a/src/gdialog +++ b/src/gdialog @@ -28,6 +28,8 @@ sub get_arg () { # walk the command line +print $args; + ARG: while ($argn < $args) { get_arg; @@ -115,6 +117,18 @@ ARG: while ($argn < $args) { $argn++; get_arg; $command .= "--filename=\"$element\" "; + + # 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\" "; last ARG; } |