1
0
Fork 0
forked from wry/wry

cli: always show flip margin

This commit is contained in:
Stipe Kotarac 2026-01-02 16:29:57 +01:00
parent 5fed1d999f
commit d17bde3acd

View file

@ -1023,13 +1023,11 @@ impl Randr {
println!(" transform: {}", name); println!(" transform: {}", name);
} }
if let Some(flip_margin_ns) = o.flip_margin_ns { if let Some(flip_margin_ns) = o.flip_margin_ns {
if flip_margin_ns != 1_500_000 {
println!( println!(
" flip margin: {:?}", " flip margin: {:?}",
Duration::from_nanos(flip_margin_ns) Duration::from_nanos(flip_margin_ns)
); );
} }
}
if o.supported_color_spaces.is_not_empty() { if o.supported_color_spaces.is_not_empty() {
println!(" color spaces:"); println!(" color spaces:");
let handle_cs = |cs: &str| { let handle_cs = |cs: &str| {