Instead of selecting a screen to share arbitrarily, we'll now allow user to select the screen to share. Note that sharing multiple screens at the time is still not supported (though prolly not too far-fetched). Related to #4666  Release Notes: - Added screen selector dropdown to screen share button --------- Co-authored-by: Kirill Bulatov <kirill@zed.dev> Co-authored-by: Cole Miller <cole@zed.dev>
12 lines
231 B
Rust
12 lines
231 B
Rust
mod dispatcher;
|
|
mod display;
|
|
mod platform;
|
|
mod window;
|
|
|
|
pub use dispatcher::*;
|
|
pub(crate) use display::*;
|
|
pub(crate) use platform::*;
|
|
pub(crate) use window::*;
|
|
|
|
pub use platform::{TestScreenCaptureSource, TestScreenCaptureStream};
|