Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
SchedulerDialog: Do not limit the range of timepicker
Browse files Browse the repository at this point in the history
Signed-off-by: Fung <fython@163.com>
  • Loading branch information
fython committed Jun 24, 2017
1 parent 99e71f6 commit 77c26c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "info.papdt.blackblub"
minSdkVersion 21
targetSdkVersion 26
versionCode 11
versionName "1.3.0"
versionCode 12
versionName "1.3.0.1"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,6 @@ public void onClick(View view) {
if (mSettings.getBoolean(NightScreenSettings.KEY_DARK_THEME, false)) {
sunrisePicker.setThemeDark(true);
}
sunrisePicker.setMinTime(4, 0, 0);
sunrisePicker.setMaxTime(12, 0, 0);
sunrisePicker.show(getOwnerActivity().getFragmentManager(), "sunrise_dialog");
}
});
Expand All @@ -132,7 +130,6 @@ public void onClick(View view) {
if (mSettings.getBoolean(NightScreenSettings.KEY_DARK_THEME, false)) {
sunsetPicker.setThemeDark(true);
}
sunsetPicker.setMinTime(18, 0,0);
sunsetPicker.show(getOwnerActivity().getFragmentManager(), "sunset_dialog");
}
});
Expand Down

0 comments on commit 77c26c2

Please sign in to comment.