From 5433bdc1fd4ffb352c8775958818fb42ec94dd0e Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Tue, 23 Apr 2024 14:31:29 +0600 Subject: [PATCH] Fixed update thread --- source/ubl-settings-system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ubl-settings-system.c b/source/ubl-settings-system.c index 18b926b..ec356ce 100644 --- a/source/ubl-settings-system.c +++ b/source/ubl-settings-system.c @@ -561,7 +561,7 @@ connection_window *yon_connection_window_new(){ g_signal_connect(G_OBJECT(window->CancelButton),"clicked",G_CALLBACK(on_subwindow_close),NULL); g_signal_connect(G_OBJECT(window->StatusEntry),"clicked",G_CALLBACK(on_status_clicked),window); g_signal_connect(G_OBJECT(window->FindEntry),"clicked",G_CALLBACK(on_find_domains_clicked),window); - g_signal_connect(G_OBJECT(window->AdressEntry),"focus-out",G_CALLBACK(yon_update_thread),window); + g_signal_connect(G_OBJECT(window->AdressEntry),"focus-out-event",G_CALLBACK(yon_update_thread),window); yon_update_thread(NULL,NULL,window); return window;