mirror of
https://gitlab.freedesktop.org/pipewire/helvum.git
synced 2026-05-07 12:18:03 +02:00
Run rustfmt on the codebase
This commit is contained in:
parent
4744a1a647
commit
9784b9bae0
2 changed files with 4 additions and 2 deletions
|
|
@ -32,7 +32,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||
.expect("Application creation failed");
|
||||
|
||||
app.connect_activate(move |app| {
|
||||
let scrollwindow = gtk::ScrolledWindowBuilder::new().child(&*graphview.borrow()).build();
|
||||
let scrollwindow = gtk::ScrolledWindowBuilder::new()
|
||||
.child(&*graphview.borrow())
|
||||
.build();
|
||||
let window = gtk::ApplicationWindowBuilder::new()
|
||||
.application(app)
|
||||
.default_width(1280)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ impl Port {
|
|||
Self {
|
||||
widget: gtk::Button::with_label(name),
|
||||
id,
|
||||
direction
|
||||
direction,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue