implement profile directory open

This commit is contained in:
yggverse 2024-10-04 17:54:25 +03:00
parent 82219c01b9
commit a83b28bcc1
3 changed files with 12 additions and 6 deletions

View file

@ -34,7 +34,7 @@ fn main() -> ExitCode {
// Init GTK, start application
match gtk::init() {
Ok(_) => App::new(profile_database_connection).run(),
Ok(_) => App::new(profile_database_connection, profile_path).run(),
Err(_) => ExitCode::FAILURE,
}
}