Wayland: double click (#9608)

This PR builds off of an earlier version of
https://github.com/zed-industries/zed/pull/9595, rearranges some of the
logic, and removes an unused platform API.

Release Notes:

- N/A

---------

Co-authored-by: apricotbucket28 <agustin.nicolas.marcos@outlook.com>
This commit is contained in:
Mikayla Maki 2024-03-20 19:22:47 -07:00 committed by GitHub
parent 9b0949b6fb
commit 0b019282c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 108 additions and 85 deletions

View file

@ -12,7 +12,6 @@ use std::{
path::PathBuf,
rc::{Rc, Weak},
sync::Arc,
time::Duration,
};
/// TestPlatform implements the Platform trait for use in tests.
@ -303,10 +302,6 @@ impl Platform for TestPlatform {
Task::ready(Ok(()))
}
fn double_click_interval(&self) -> std::time::Duration {
Duration::from_millis(500)
}
fn register_url_scheme(&self, _: &str) -> Task<anyhow::Result<()>> {
unimplemented!()
}