mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
9 lines
194 B
Rust
9 lines
194 B
Rust
use yazi_config::YAZI;
|
|
|
|
pub(super) struct RatermOption {
|
|
pub mouse: bool,
|
|
}
|
|
|
|
impl Default for RatermOption {
|
|
fn default() -> Self { Self { mouse: !YAZI.mgr.mouse_events.get().is_empty() } }
|
|
}
|