From 0cdc95e45cfb733cfb3312a462c460a19662d6c7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 8 Sep 2018 01:00:47 +0100 Subject: [PATCH] Fix interface complexity configuration. --- src/lib/config.cc | 4 ++-- 1 file 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 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 */ -- 2.30.2