You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I love this extension!
I noticed a small bug : when neko sleeps on the progress bar, and a menu is opened, neko is rendered on top of all things, including the menu.
This is a little bit weird, as she should be sleeping on the progress bar. I consider 2 different fixes :
Make a system that recognizes that a menu is opened, therefore making neko have a z-axis just under the menu, making her wake up and run to the volume bar, then back to sleep. Doing so, we should be able to play with her without having to close the menu, and make her back to sleep again.
If this is not possible/too hard, if a special z-axis could be found / just deplacing her permanently to the volume bar could fix this.
If this is of any help
The text was updated successfully, but these errors were encountered:
The implementation of Spicetify and Spotify on a popup modal is vastly different from one another and on different parts of the DOM tree (can't use MutationObserver), therefore I can't exactly "detect" if a modal is opened without causing performance issues of recursively trying to find the menu even when it's not opened.
AFAIK there's no way to "get" the z-axis of an element in JavaScript, you can only declare them using z-index in CSS and let the client handles all the rendering. Even the x-axis and y-axis requires you to get from a known & specific named element and compare them to another specific element, you can't "check" for any other element overlapping the volume bar/Oneko otherwise.
What I can do is that I can force the popup modal to render on top of Oneko or have Oneko's priority lower on the z-index list. Is that satisfactory to you?
Note that I do intend to keep this extension as simple as possible, the same as the concept of Oneko, so if it is overly engineered I won't be able to accept it.
Hi! I love this extension!
I noticed a small bug : when neko sleeps on the progress bar, and a menu is opened, neko is rendered on top of all things, including the menu.
This is a little bit weird, as she should be sleeping on the progress bar. I consider 2 different fixes :
If this is of any help
The text was updated successfully, but these errors were encountered: