aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-07-26 09:58:06 +0200
committerThomas White <taw@bitwiz.org.uk>2011-07-26 09:58:06 +0200
commitd1a3e8d5d0189690bdd9f23196e0fb5254d0e856 (patch)
treeec8ec3ea8d579deb2d71f647580b55e3c5fcb7e1 /src/stylesheet.h
parenta7c93728218e9b14f4ce82516cfc6b42d98abd17 (diff)
halign / valign
Diffstat (limited to 'src/stylesheet.h')
-rw-r--r--src/stylesheet.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/stylesheet.h b/src/stylesheet.h
index 3e1c8be..8886283 100644
--- a/src/stylesheet.h
+++ b/src/stylesheet.h
@@ -55,19 +55,19 @@ enum vert_pos
struct layout_element
{
- char *name;
+ char *name;
struct text_style *text_style;
- double margin_left;
- double margin_right;
- double margin_top;
- double margin_bottom;
+ double margin_left;
+ double margin_right;
+ double margin_top;
+ double margin_bottom;
- enum justify just;
- enum vert_pos vert;
+ enum justify halign;
+ enum vert_pos valign;
- double offset_x;
- double offset_y;
+ double offset_x;
+ double offset_y;
};