Update gui.rs

This commit is contained in:
KeksNino
2025-03-21 17:42:08 +01:00
parent bf6a39f70d
commit f440a88be4
+3
View File
@@ -3,6 +3,9 @@ use gtk::{
Application, ApplicationWindow, Box as GtkBox, Button, FileChooserAction, FileChooserDialog, Application, ApplicationWindow, Box as GtkBox, Button, FileChooserAction, FileChooserDialog,
Image, Orientation, PolicyType, ResponseType, ScrolledWindow, Image, Orientation, PolicyType, ResponseType, ScrolledWindow,
}; };
use std::process::Command;
use std::{process::{Command, Child}, thread};
use std::sync::{Arc, Mutex};
use walkdir::WalkDir; use walkdir::WalkDir;
const APP_ID: &str = "org.gtk_rs.Example"; const APP_ID: &str = "org.gtk_rs.Example";