How to make editor resizable?
I use egui for my UI. How can I make it resizable? When I run the standalone version, the window cannot be resized. When I use it in Reaper, the FX window can be resized but the editor doesn't change when I do.
Egui resizability was added with this commit: https://github.com/robbert-vdh/nih-plug/commit/91a0ff745e7c86c5a25a1afaa8279a52a3d0dcdd
Thanks! I tried wrapping my UI in a ResizableWindow. Here's what happens when I try to resize it (in Reaper on Mac).
https://github.com/user-attachments/assets/0b6b5c79-57b9-4dfa-92c5-233bafac5808
I have a working window resize with iced here nih_plug_spectrum_analyser. I had to fork nih_plug_iced and baseview. Ultimately I exposed screen mouse location to be able to do it cleanly.