Skip to content

Commit

Permalink
#8129 - remove creator toolbox classes
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed May 27, 2024
1 parent 47e2c8e commit ec8fe1e
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/actions/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,15 +355,6 @@ export abstract class BaseAction extends Base implements IAction {
@property({ defaultValue: false }) isPressed: boolean;
@property({ defaultValue: false }) isHovered: boolean;

public get classNames(): string {
return new CssClassBuilder()
.append("svc-toolbox__tool")
.append(this.css)
.append("svc-toolbox__tool--hovered", this.isHovered)
.append("svc-toolbox__tool--pressed", this.isPressed)
.toString();
}

private showPopupTimeout: NodeJS.Timeout;
private hidePopupTimeout: NodeJS.Timeout;
private clearPopupTimeouts() {
Expand Down

0 comments on commit ec8fe1e

Please sign in to comment.