diff --git a/src/ThemeSettings.php b/src/ThemeSettings.php
index b3db14c..38b6993 100644
--- a/src/ThemeSettings.php
+++ b/src/ThemeSettings.php
@@ -229,7 +229,11 @@ class ThemeSettings extends Config {
    *   TRUE or FALSE
    */
   public function overridesValue($name, $value) {
-    return !!DiffArray::diffAssocRecursive([$name => $value], [$name => $this->get($name)]);
+    if ($value == array() && $this->get($name) != array()) {
+      return TRUE;
+    } else {
+      return !!DiffArray::diffAssocRecursive([$name => $value], [$name => $this->get($name)]);
+    }
   }
 
   /**
