Skip to content

Commit

Permalink
调整旋转滑块的最小值,更改为-20
Browse files Browse the repository at this point in the history
  • Loading branch information
Shua-github committed Jan 4, 2025
1 parent aee24fa commit 14107f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function App() {
<Slider
value={rotate}
onChange={(e, v) => setRotate(v)}
min={-30}
min={-20}
max={10}
step={0.2}
track={false}
Expand All @@ -263,7 +263,7 @@ function App() {
/>
</div>
<div>
<label>文字弧形 (Beta): </label>
<label>文字弧形: </label>
<Switch
checked={curve}
onChange={(e) => setCurve(e.target.checked)}
Expand Down

0 comments on commit 14107f7

Please sign in to comment.