diff options
author | Ajay <[email protected]> | 2023-12-22 11:52:42 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2023-12-22 11:52:42 -0500 |
commit | 9d0e42de7642202656538b2178fb365a932501b9 (patch) | |
tree | 066ce5a895005bbb7e409a34cf04fa1ef8072d17 /src | |
parent | 8496e32cfefddda85605c02ad8e241e559c12041 (diff) | |
download | SponsorBlock-9d0e42de7642202656538b2178fb365a932501b9.tar.gz SponsorBlock-9d0e42de7642202656538b2178fb365a932501b9.zip |
Fix second skip notice slot not working
Diffstat (limited to 'src')
-rw-r--r-- | src/components/NoticeComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/NoticeComponent.tsx b/src/components/NoticeComponent.tsx index 78471341..2687640f 100644 --- a/src/components/NoticeComponent.tsx +++ b/src/components/NoticeComponent.tsx @@ -109,7 +109,7 @@ class NoticeComponent extends React.Component<NoticeProps, NoticeState> { mouseDownInfo: null, mouseMoved: false, right: bounds[0], - bottom: bounds[1] + bottom: props.showInSecondSlot ? 290 : bounds[1] } } |