mirror of
https://github.com/ankitects/anki.git
synced 2026-01-14 06:23:57 -05:00
Fix reversed sticky icon logic
This commit is contained in:
parent
1ae13b7217
commit
4424ae864b
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ export class LabelContainer extends HTMLDivElement {
|
|||
}
|
||||
|
||||
setSticky(state: boolean): void {
|
||||
this.sticky.classList.toggle("is-inactive", state);
|
||||
this.sticky.classList.toggle("is-inactive", !state);
|
||||
}
|
||||
|
||||
activateSticky(initialState: boolean): void {
|
||||
|
|
|
|||
Loading…
Reference in a new issue