mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
apply rustfmt
This commit is contained in:
parent
e6e81e846a
commit
f8d938a8af
24 changed files with 253 additions and 611 deletions
|
|
@ -1,22 +1,9 @@
|
|||
use gtk::Entry;
|
||||
|
||||
pub fn new() -> Entry
|
||||
{
|
||||
let entry = Entry::builder()
|
||||
|
||||
.placeholder_text(
|
||||
"URL or search term..."
|
||||
)
|
||||
|
||||
.hexpand(
|
||||
true
|
||||
)
|
||||
|
||||
.progress_pulse_step(
|
||||
0.1
|
||||
)
|
||||
|
||||
.build();
|
||||
|
||||
return entry;
|
||||
}
|
||||
pub fn new() -> Entry {
|
||||
Entry::builder()
|
||||
.placeholder_text("URL or search term...")
|
||||
.hexpand(true)
|
||||
.progress_pulse_step(0.1)
|
||||
.build()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue