fix(method): after add v4_12 feature use .set_visible() method instead .show()/.hide()

This commit is contained in:
2024-08-16 13:55:24 +04:00
parent 5dde8ab20c
commit 3fdac01687
2 changed files with 3 additions and 3 deletions

View File

@@ -59,5 +59,5 @@ pub fn ui(application: &adw::Application) {
.child(&application_box)
.build();
window.show();
window.present();
}