We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pickerview下拉选择时,选项一半(50%)已经进入待选框,但不会选种,超过100%未到150%时会选种第二个。
ng-zorro-antd-mobile/components/picker/picker.component.ts
Lines 104 to 114 in cd5216a
if (this.differY <= -this.lineHeight / 2) { this.currentY += Math.floor(this.differY / this.lineHeight + 0.5); if (this.currentY <= this.maxY) { this.currentY = this.maxY; } } else if (this.differY >= this.lineHeight / 2) { this.currentY += Math.floor(this.differY / this.lineHeight + 0.5); if (this.currentY >= 0) { this.currentY = 0; } }
会更合理呢?
The text was updated successfully, but these errors were encountered:
fix(module: picker): fix drop down selection (NG-ZORRO#805)
9e9764c
fix(module: picker): fix drop down selection (#805) (#844)
535c044
No branches or pull requests
pickerview下拉选择时,选项一半(50%)已经进入待选框,但不会选种,超过100%未到150%时会选种第二个。
ng-zorro-antd-mobile/components/picker/picker.component.ts
Lines 104 to 114 in cd5216a
是否改成:
会更合理呢?
The text was updated successfully, but these errors were encountered: