summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/com/cyngn/theme/util/Utils.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/cyngn/theme/util/Utils.java b/src/com/cyngn/theme/util/Utils.java
index d5f8bab..56670de 100644
--- a/src/com/cyngn/theme/util/Utils.java
+++ b/src/com/cyngn/theme/util/Utils.java
@@ -32,6 +32,7 @@ import android.view.WindowManager;
import android.view.WindowManagerGlobal;
import com.cyngn.theme.chooser.ChooserActivity;
+import cyanogenmod.providers.CMSettings;
import java.io.File;
import java.io.FileInputStream;
@@ -261,8 +262,8 @@ public class Utils {
// Need to also check for devices with hardware keys where the user has chosen to use
// the on screen navigation bar
needsNavigationBar = needsNavigationBar ||
- Settings.Secure.getInt(context.getContentResolver(),
- Settings.Secure.DEV_FORCE_SHOW_NAVBAR, 0) == 1;
+ CMSettings.Secure.getInt(context.getContentResolver(),
+ CMSettings.Secure.DEV_FORCE_SHOW_NAVBAR, 0) == 1;
return needsNavigationBar;
}