cargo fmt

This commit is contained in:
Victoria Brekenfeld 2022-07-04 16:00:29 +02:00
parent 43062c1754
commit 39de286d51
40 changed files with 1557 additions and 1080 deletions

View file

@ -1,19 +1,11 @@
use std::cell::RefCell;
use crate::{input::ActiveOutput, state::Common};
use smithay::{
wayland::{
output::Output,
seat::Seat,
},
utils::{Rectangle, Transform, Logical},
};
use crate::{
input::ActiveOutput,
state::Common,
utils::{Logical, Rectangle, Transform},
wayland::{output::Output, seat::Seat},
};
use std::cell::RefCell;
pub use crate::{
state::State,
};
pub use crate::state::State;
pub trait OutputExt {
fn geometry(&self) -> Rectangle<i32, Logical>;
@ -21,14 +13,17 @@ pub trait OutputExt {
impl OutputExt for Output {
fn geometry(&self) -> Rectangle<i32, Logical> {
Rectangle::from_loc_and_size(
self.current_location(),
{
Transform::from(self.current_transform()).transform_size(
self.current_mode().map(|m| m.size).unwrap_or_else(|| (0,0).into())
).to_f64().to_logical(self.current_scale().fractional_scale()).to_i32_round()
},
)
Rectangle::from_loc_and_size(self.current_location(), {
Transform::from(self.current_transform())
.transform_size(
self.current_mode()
.map(|m| m.size)
.unwrap_or_else(|| (0, 0).into()),
)
.to_f64()
.to_logical(self.current_scale().fractional_scale())
.to_i32_round()
})
}
}