From 25d7d80e20162cb68595c0cd6e25fe3c9f8c576b Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Mon, 1 Mar 2021 13:27:48 +0100 Subject: [PATCH] Switch back to pin icons, use fill/unfilled versions --- ts/editor/labelContainer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/editor/labelContainer.ts b/ts/editor/labelContainer.ts index 82586565e..114eb7a18 100644 --- a/ts/editor/labelContainer.ts +++ b/ts/editor/labelContainer.ts @@ -33,8 +33,8 @@ export class LabelContainer extends HTMLDivElement { } setSticky(state: boolean): void { - this.sticky.classList.toggle("bi-lock-fill", state); - this.sticky.classList.toggle("bi-unlock-fill", !state); + this.sticky.classList.toggle("bi-pin-angle-fill", state); + this.sticky.classList.toggle("bi-pin-angle", !state); } activateSticky(initialState: boolean): void {