diff options
Diffstat (limited to 'core/java/android/provider/Settings.java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index f5174fa..bfffddd 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2513,21 +2513,17 @@ public final class Settings { public static final String POINTER_SPEED = "pointer_speed"; /** - * Whether to enable pie controls on expanded screen? - * The value is boolean (1 or 0). + * Whether to enable pie controls? + * The value is integer: + * 2 = always on + * 1 = expanded desktop + * 0 = off * Default: 0 * @hide */ public static final String PIE_CONTROLS = "pie_controls"; /** - * Display search button in pie? - * The value is boolean (1 or 0). - * @hide - */ - public static final String PIE_SEARCH = "pie_search"; - - /** * Locations of the pie in the screen. * (1<<0) = LEFT * (1<<1) = BOTTOM @@ -2536,7 +2532,7 @@ public final class Settings { * Default: BOTTOM * @hide */ - public static final String PIE_GRAVITY = "pie_gravity"; + public static final String PIE_POSITIONS = "pie_positions"; /** * Relative pie size (fraction) |
