diff --git a/Cargo.toml b/Cargo.toml index 312a067..f756156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib", "lib"] [dependencies] nih_plug = { git = "https://github.com/BillyDM/nih-plug.git" } -vizia = { git = "https://github.com/vizia/vizia", rev = "23e34039", default-features = false, features = ["baseview", "clipboard", "x11"] } +vizia = { git = "https://github.com/vizia/vizia", rev = "3d04965d", default-features = false, features = ["baseview", "clipboard", "x11"] } # vizia = { path = "../vizia", default_features = false, features = ["baseview", "clipboard", "x11"] } # Direct dependency on `vizia_reactive` so the editor can call @@ -26,7 +26,7 @@ vizia = { git = "https://github.com/vizia/vizia", rev = "23e34039", default-feat # AND `vizia_baseview`'s `on_frame_update` calls `Runtime::drain_pending_work()` # itself (matching what `vizia_winit` already does). Tracked in the companion # vizia PR — see CHANGELOG / PR description for the link. -vizia_reactive = { git = "https://github.com/vizia/vizia", rev = "23e34039", default-features = false } +vizia_reactive = { git = "https://github.com/vizia/vizia", rev = "3d04965d", default-features = false } crossbeam = "0.8" # Used by `ParamRegistry` for its signal map — flushing happens from the host /