Skip to content

Commit

Permalink
Pie: set Big as default for item gap (2/2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaluoshi committed May 31, 2013
1 parent 83b26e9 commit 72ddce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/java/android/provider/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -2574,7 +2574,7 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
public static final String PIE_SEARCH = "pie_search";

/**
* Pie gap angle, should default to 3
* Pie gap angle, should default to 2
* @hide
*/
public static final String PIE_GAP = "pie_gap";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private void getDimensions() {
mPieAngle = Settings.System.getInt(mContext.getContentResolver(),
Settings.System.PIE_ANGLE, 12);
mPieGap = Settings.System.getInt(mContext.getContentResolver(),
Settings.System.PIE_GAP, 3);
Settings.System.PIE_GAP, 2);
mHapticFeedback = Settings.System.getInt(mContext.getContentResolver(),
Settings.System.HAPTIC_FEEDBACK_ENABLED, 1) != 0;

Expand Down

0 comments on commit 72ddce4

Please sign in to comment.