Skip to content

Commit 062302c

Browse files
author
Deren Vural
committed
trunk formatting
Signed-off-by: Deren Vural <[email protected]>
1 parent 791006b commit 062302c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn main() {
6464
app.connect_activate(build_ui);
6565

6666
// Run the application
67-
println!("{}",app.run());
67+
println!("{}", app.run());
6868
}
6969

7070
/*

src/mainwindow/imp.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ pub struct SettingsWindowContainer {
4040
}
4141
impl Default for SettingsWindowContainer {
4242
fn default() -> Self {
43-
Self { window: Default::default(), open: false }
43+
Self {
44+
window: Default::default(),
45+
open: false,
46+
}
4447
}
4548
}
4649

src/mainwindow/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use imp::SettingsWindowContainer;
2626
use adwaita::{gio, glib, prelude::*, subclass::prelude::*};
2727
use gio::{Settings, SimpleAction};
2828
use glib::{clone, Object};
29-
use std::{ffi::OsStr, cell::RefMut};
29+
use std::{cell::RefMut, ffi::OsStr};
3030

3131
// Modules
3232
use crate::{formatter, processor, property, provider, settingswindow, subprocess, APP_ID};

0 commit comments

Comments
 (0)