Skip to content

Commit

Permalink
fix(edgeless): change connector toolbar tip (#6233)
Browse files Browse the repository at this point in the history
  • Loading branch information
regischen authored Feb 20, 2024
1 parent 8d89a15 commit cf23201
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ export class EdgelessConnectorToolButton extends EdgelessToolButton<
const arrowColor = active ? 'currentColor' : '#77757D';
return html`
<edgeless-tool-icon-button
.tooltip=${this._menu ? '' : 'Connector'}
.tooltip=${this._menu
? ''
: html`<div>
<div>Straight : L</div>
<div>Elbowed : X (Default)</div>
<div>Curve : C</div>
</div>`}
.tooltipOffset=${17}
.active=${active}
.iconContainerPadding=${8}
Expand Down

0 comments on commit cf23201

Please sign in to comment.