mirror of
https://github.com/xlmnxp/blue-recorder.git
synced 2025-04-03 08:14:55 +03:00
update
This commit is contained in:
parent
3144ee473c
commit
c6cf91e27e
@ -1,7 +1,6 @@
|
|||||||
use adw::{Application, Window};
|
|
||||||
use adw::gio::File;
|
use adw::gio::File;
|
||||||
use adw::gtk::{AboutDialog, Builder, Button, CheckButton, ComboBoxText, CssProvider, Entry, FileChooserNative,
|
use adw::gtk::{AboutDialog, Application, Builder, Button, CheckButton, ComboBoxText, CssProvider, Entry, FileChooserNative,
|
||||||
FileChooserAction, Image, Label, MessageDialog, SpinButton, TextBuffer, TextView, ToggleButton};
|
FileChooserAction, Image, Label, MessageDialog, SpinButton, TextBuffer, TextView, ToggleButton, Window};
|
||||||
use adw::prelude::*;
|
use adw::prelude::*;
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
#[cfg(any(target_os = "freebsd", target_os = "linux"))]
|
#[cfg(any(target_os = "freebsd", target_os = "linux"))]
|
||||||
@ -496,6 +495,10 @@ fn build_ui(application: &Application, error_dialog: MessageDialog, error_messag
|
|||||||
);
|
);
|
||||||
folder_chooser_native.set_transient_for(Some(&main_window));
|
folder_chooser_native.set_transient_for(Some(&main_window));
|
||||||
folder_chooser_native.set_modal(true);
|
folder_chooser_native.set_modal(true);
|
||||||
|
let file_gio = &File::for_path(&config_management::get(
|
||||||
|
"default", "folder",
|
||||||
|
));
|
||||||
|
println!("{file_gio}");
|
||||||
folder_chooser_native
|
folder_chooser_native
|
||||||
.set_file(&File::for_path(&config_management::get(
|
.set_file(&File::for_path(&config_management::get(
|
||||||
"default", "folder",
|
"default", "folder",
|
||||||
|
Loading…
Reference in New Issue
Block a user