Skip to content

Commit

Permalink
chore: 去掉roundPanel
Browse files Browse the repository at this point in the history
  • Loading branch information
army8735 committed Dec 31, 2024
1 parent 95abfad commit 4307ad6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/control/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Input from './Input';
import Panel from './Panel';
import BasicPanel from './BasicPanel';
import OpacityPanel from './OpacityPanel';
import RoundPanel from './RoundPanel';
// import RoundPanel from './RoundPanel';
import PointPanel from './PointPanel';
import FillPanel from './FillPanel';
import StrokePanel from './StrokePanel';
Expand Down Expand Up @@ -47,8 +47,8 @@ export function initPanel(root: Root, dom: HTMLElement, listener: Listener) {
const opacityPanel = new OpacityPanel(root, dom, listener);
opacityPanel.show(listener.selected);

const roundPanel = new RoundPanel(root, dom, listener);
roundPanel.show(listener.selected);
// const roundPanel = new RoundPanel(root, dom, listener);
// roundPanel.show(listener.selected);

const pointPanel = new PointPanel(root, dom, listener);
pointPanel.show(listener.selected);
Expand All @@ -75,7 +75,7 @@ export function initPanel(root: Root, dom: HTMLElement, listener: Listener) {
alignPanel,
basicPanel,
opacityPanel,
roundPanel,
// roundPanel,
fillPanel,
strokePanel,
textPanel,
Expand Down Expand Up @@ -103,7 +103,7 @@ export default {
Panel,
BasicPanel,
OpacityPanel,
RoundPanel,
// RoundPanel,
PointPanel,
FillPanel,
StrokePanel,
Expand Down

0 comments on commit 4307ad6

Please sign in to comment.