NESW and NWSE resize cursors? #6051
-
|
I'm trying to implement diagonal resizing for a custom object, but Fyne seems to lack ResizeNWSE and ResizeNESW cursors (likely due to GLFW 3.3 limitation). I'm currently parsing Windows .cur files manually to get the system cursor, but this is obviously not cross-platform nor clean. Is there a known pattern or library to access the remaining native OS cursors in Fyne right now? I want to avoid using static PNGs so that the app feels native. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You're right - the cursors are not available in the underlying GLFW library. Once the new cursors are in a release we have access to then we will expose through the library. In the meantime there is no way better than what you are already doing. |
Beta Was this translation helpful? Give feedback.
You're right - the cursors are not available in the underlying GLFW library.
Once the new cursors are in a release we have access to then we will expose through the library. In the meantime there is no way better than what you are already doing.