summaryrefslogtreecommitdiff
path: root/src/lib/content_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/content_factory.cc')
-rw-r--r--src/lib/content_factory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content_factory.cc b/src/lib/content_factory.cc
index f123061b7..0e8b04eda 100644
--- a/src/lib/content_factory.cc
+++ b/src/lib/content_factory.cc
@@ -166,7 +166,7 @@ content_factory (boost::filesystem::path path)
if (valid_image_file (path)) {
single.reset (new ImageContent(path));
- } else if (ext == ".srt" || ext == ".ssa" || ext == ".ass") {
+ } else if (ext == ".srt" || ext == ".ssa" || ext == ".ass" || ext == ".stl") {
single.reset (new StringTextFileContent(path));
} else if (ext == ".xml") {
cxml::Document doc;