From f440a88be42f5aa4ffd047b2815a942101e17e5f Mon Sep 17 00:00:00 2001 From: KeksNino Date: Fri, 21 Mar 2025 17:42:08 +0100 Subject: [PATCH] Update gui.rs --- src/gui.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui.rs b/src/gui.rs index b5dbb5d..4052705 100644 --- a/src/gui.rs +++ b/src/gui.rs @@ -3,6 +3,9 @@ use gtk::{ Application, ApplicationWindow, Box as GtkBox, Button, FileChooserAction, FileChooserDialog, Image, Orientation, PolicyType, ResponseType, ScrolledWindow, }; +use std::process::Command; +use std::{process::{Command, Child}, thread}; +use std::sync::{Arc, Mutex}; use walkdir::WalkDir; const APP_ID: &str = "org.gtk_rs.Example";