From 9bd6e51a404a625b331de5148fd2890f7c5cddab Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Thu, 31 Aug 2023 10:00:53 +0600 Subject: [PATCH] Update button has been fixed - now it updates devices properly --- source/controler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/controler.c b/source/controler.c index bc601de..745aa9d 100644 --- a/source/controler.c +++ b/source/controler.c @@ -474,7 +474,7 @@ void control_event(main_window* _config_main_gui, custom_window* _config_custom_ g_signal_connect(G_OBJECT(_config_custom_gui->device.btnEdit), "clicked", G_CALLBACK(wrapper_edit_view_device_show), glade_path); g_signal_connect(G_OBJECT(_config_custom_gui->device.btnAdd), "clicked", G_CALLBACK(wrapper_add_view_device_show), glade_path); g_signal_connect(G_OBJECT(_config_custom_gui->device.btnDel),"clicked",G_CALLBACK(device_remove), glade_path); - g_signal_connect(G_OBJECT(_config_custom_gui->device.Update),"clicked",G_CALLBACK(device_update), NULL); + g_signal_connect(G_OBJECT(_config_custom_gui->device.Update),"clicked",G_CALLBACK(device_disk_parsed), NULL); }