summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/tools/dvdomatic.cc4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de24ad89b..edce0136f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,11 @@
* Make the audio plot expand in height when its
window is enlarged.
+ * Label subtitle offset with "pixels" (#101).
+
+ * Speculative fix for error on forcing language
+ to English (#103).
+
2013-04-01 Carl Hetherington <cth@carlh.net>
* Version 0.79 released.
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc
index 87c079bee..b408ef505 100644
--- a/src/tools/dvdomatic.cc
+++ b/src/tools/dvdomatic.cc
@@ -452,7 +452,9 @@ setup_i18n ()
if (Config::instance()->language()) {
wxLanguageInfo const * li = wxLocale::FindLanguageInfo (std_to_wx (Config::instance()->language().get()));
- language = li->Language;
+ if (li) {
+ language = li->Language;
+ }
}
if (wxLocale::IsAvailable (language)) {