Started thinking about GTK rs functions

pull/29/head
Rafał Mikrut 4 years ago
parent 216a13a326
commit 49403751e5

@ -83,6 +83,8 @@ I checked my home directory without any folder exceptions(I removed all director
First run reads file entry and save it to cache so this step is mostly limited by disk performance, and with second run cache helps it so searching is a lot of faster.
Duplicate Checker
| App| Executing Time |
|:----------:|:-------------:|
| Fslint (First Run)| 140s |
@ -92,6 +94,14 @@ First run reads file entry and save it to cache so this step is mostly limited b
| Czkawka CLI Release(First Run) | 128s |
| Czkawka CLI Release(Second Run) | 8s |
Empty folder finder
| App| Executing Time |
|:----------:|:-------------:|
| Fslint | |
| Czkawka CLI Debug | |
| Czkawka CLI Release | |
Differences should be more visible when using slower processor or faster disk.
## License

@ -25,6 +25,8 @@ fn main() {
gtk::main();
}
fn prepare_buttons_at_start(builder : Builder){
// let buttons_search : gtk::Button = builder.get_object("buttons_search").unwrap();
// buttons_search.connect_clicked(|| duplicate::);
let buttons_stop : gtk::Button = builder.get_object("buttons_stop").unwrap();
buttons_stop.hide();
let buttons_resume : gtk::Button = builder.get_object("buttons_resume").unwrap();

Loading…
Cancel
Save