Skip to content

Commit

Permalink
release as 4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiang-gzu committed Nov 6, 2021
1 parent 374894c commit a7e7ea0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 更新日志

## 4.1.3 - 2021.11.07

- 滚轮选择器条目文字过长截取优化;
- 日期时间选择器支持滚动联动不重置开关;
- 滚轮选择器条目滚动展示效果优化;

## 4.1.2 - 2021.11.01

- 修复 Android 7.x 上滚轮选择器选中项重叠问题;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import androidx.annotation.NonNull;

import com.github.gzuliyujiang.dialog.DialogLog;
import com.github.gzuliyujiang.wheelpicker.R;
import com.github.gzuliyujiang.wheelpicker.annotation.DateMode;
import com.github.gzuliyujiang.wheelpicker.contract.DateFormatter;
Expand Down Expand Up @@ -252,7 +251,6 @@ public void setRange(DateEntity startValue, DateEntity endValue, DateEntity defa
this.startValue = startValue;
this.endValue = endValue;
if (defaultValue != null) {
DialogLog.print("defaultValue=" + defaultValue.toString());
selectedYear = defaultValue.getYear();
selectedMonth = defaultValue.getMonth();
selectedDay = defaultValue.getDay();
Expand Down

0 comments on commit a7e7ea0

Please sign in to comment.