Skip to content

Commit

Permalink
cmparts: Trackball wake on by default
Browse files Browse the repository at this point in the history
Change-Id: I420f19997c237a5f40b9042044aa6383f3725ff8
  • Loading branch information
hyperb1iss committed Apr 9, 2011
1 parent 8fea3ad commit c44c076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/cyanogenmod/cmparts/activities/InputActivity.java
Expand Up @@ -79,7 +79,7 @@ public void onCreate(Bundle savedInstanceState) {
/* Trackball Wake */
mTrackballWakePref = (CheckBoxPreference) prefSet.findPreference(TRACKBALL_WAKE_PREF);
mTrackballWakePref.setChecked(Settings.System.getInt(getContentResolver(),
Settings.System.TRACKBALL_WAKE_SCREEN, 0) == 1);
Settings.System.TRACKBALL_WAKE_SCREEN, 1) == 1);

/* Volume button music controls */
mVolBtnMusicCtrlPref = (CheckBoxPreference) prefSet.findPreference(VOLBTN_MUSIC_CTRL_PREF);
Expand Down

0 comments on commit c44c076

Please sign in to comment.