Merge "Fix bug #17393417 Developer Options are not indexed after activating them" into lmp-dev
diff --git a/src/com/android/settings/search/Index.java b/src/com/android/settings/search/Index.java
index db60dfe..3957cf6 100644
--- a/src/com/android/settings/search/Index.java
+++ b/src/com/android/settings/search/Index.java
@@ -185,6 +185,7 @@
dataToUpdate = new ArrayList<SearchIndexableData>(other.dataToUpdate);
dataToDelete = new ArrayList<SearchIndexableData>(other.dataToDelete);
nonIndexableKeys = new HashMap<String, List<String>>(other.nonIndexableKeys);
+ forceUpdate = other.forceUpdate;
}
public UpdateData copy() {