Skip to content

Commit 0ea459d

Browse files
committed
style: run format
1 parent 7f9580b commit 0ea459d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,17 +158,17 @@ pub fn capture_fullscreen() -> ImageData {
158158
let total_width = monitors
159159
.iter()
160160
.map(|m| {
161-
(m.x().expect("Failed to get monitor x") as u32
162-
+ m.width().expect("Failed to get monitor width"))
161+
m.x().expect("Failed to get monitor x") as u32
162+
+ m.width().expect("Failed to get monitor width")
163163
})
164164
.max()
165165
.unwrap();
166166

167167
let total_height = monitors
168168
.iter()
169169
.map(|m| {
170-
(m.y().expect("Failed to get monitor y") as u32
171-
+ m.height().expect("Failed to get monitor height"))
170+
m.y().expect("Failed to get monitor y") as u32
171+
+ m.height().expect("Failed to get monitor height")
172172
})
173173
.max()
174174
.unwrap();

0 commit comments

Comments
 (0)