diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-08 01:00:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-08 01:26:49 +0100 |
| commit | 0cdc95e45cfb733cfb3312a462c460a19662d6c7 (patch) | |
| tree | 83ec0bf76950e15096dc03bb12ea45acd3f43a7e /src/lib | |
| parent | 317642ed92c76e0387fe8c439fd0c36317a7ef0d (diff) | |
Fix interface complexity configuration.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/config.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc index 8c76671d4..0baaf487c 100644 --- a/src/lib/config.cc +++ b/src/lib/config.cc @@ -478,8 +478,8 @@ try _gdc_password = f.optional_string_child("GDCPassword"); optional<string> ic = f.optional_string_child("InterfaceComplexity"); - if (ic && *ic == "simple") { - _interface_complexity = INTERFACE_SIMPLE; + if (ic && *ic == "full") { + _interface_complexity = INTERFACE_FULL; } /* Replace any cinemas from config.xml with those from the configured file */ |
