summaryrefslogtreecommitdiff
path: root/src/parse/subtitle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/subtitle.h')
-rw-r--r--src/parse/subtitle.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse/subtitle.h b/src/parse/subtitle.h
index 867b3f0e..3993a6be 100644
--- a/src/parse/subtitle.h
+++ b/src/parse/subtitle.h
@@ -34,13 +34,14 @@ class Text
public:
Text ()
: v_position (0)
- , v_align (TOP)
+ , v_align (VERTICAL_TOP)
{}
Text (boost::shared_ptr<const cxml::Node> node, boost::optional<int> tcr);
float v_position;
VAlign v_align;
+ HAlign h_align;
std::string text;
std::list<boost::shared_ptr<Font> > font_nodes;
};