aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.y
diff options
context:
space:
mode:
Diffstat (limited to 'libstorycode/storycode.y')
-rw-r--r--libstorycode/storycode.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstorycode/storycode.y b/libstorycode/storycode.y
index b04acf4..1062794 100644
--- a/libstorycode/storycode.y
+++ b/libstorycode/storycode.y
@@ -230,7 +230,7 @@ frameopt:
;
geometry:
- length TIMES length PLUS length PLUS length { $$.x = $1; $$.y = $3; $$.w = $5; $$.h = $7;
+ length TIMES length PLUS length PLUS length { $$.w = $1; $$.h = $3; $$.x = $5; $$.y = $7;
ctx->geom = $$; ctx->geom_set = 1; }
;
@@ -246,8 +246,8 @@ slidetitle:
length:
VALUE UNIT { $$.len = $VALUE;
- if ( $UNIT == 'f' ) $$.unit = LENGTH_UNIT;
- if ( $UNIT == 'u' ) $$.unit = LENGTH_FRAC; }
+ if ( $UNIT == 'u' ) $$.unit = LENGTH_UNIT;
+ if ( $UNIT == 'f' ) $$.unit = LENGTH_FRAC; }
;