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
Leave the file dialog open and create a new project or open a different one
Select a file in the dialog
After Effects will crash:
I tested this on Windows; not sure if it also occurs on macOS.
This could be an issue because it seems that sometimes the dialog appears behind the main AE window, and users could potentially forget that the dialog is open and switch projects.
I ran into this issue with my own plugin when trying to figure out the "right way" to create a file selection dialog in AE. I believe you can get the main window handle with AEGP_GetMainHWND and then pass it into rfd::FileDialog via set_parent, but doing the same thing in Premiere seems to require using their own custom suite (unfortunately not yet implemented in the high-level API in the after-effects crate).
The text was updated successfully, but these errors were encountered:
This does not happen on MacOs, which is the only place I test. I'll look into exposing that API the next time I throw a PR at the after-effects crate. Thanks for the detailed write up.
If you:
After Effects will crash:
I tested this on Windows; not sure if it also occurs on macOS.
This could be an issue because it seems that sometimes the dialog appears behind the main AE window, and users could potentially forget that the dialog is open and switch projects.
I ran into this issue with my own plugin when trying to figure out the "right way" to create a file selection dialog in AE. I believe you can get the main window handle with
AEGP_GetMainHWND
and then pass it intorfd::FileDialog
viaset_parent
, but doing the same thing in Premiere seems to require using their own custom suite (unfortunately not yet implemented in the high-level API in theafter-effects
crate).The text was updated successfully, but these errors were encountered: