#51 fix constructor call

This commit is contained in:
Henning Jacobs
2016-12-24 14:35:23 +01:00
parent bc7ccd883a
commit c9db32658d

View File

@@ -11,7 +11,7 @@ export class Theme {
if (clazz) {
return new clazz()
} else {
return DefaultTheme()
return new DefaultTheme()
}
}
}