merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 3fdac01687 - Show all commits

View File

@ -42,8 +42,8 @@ pub fn parse_fields(all_inputs: Vec<Input<Entry>>) -> Result<SignalReduce> {
#[inline]
pub fn update_column_view(column_view: &ColumnView) {
column_view.hide();
column_view.show();
column_view.set_visible(false);
column_view.set_visible(true);
}
#[inline]

View File

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