From 97a163f4bb47a8096f9eaa3f83962b34e920239d Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Tue, 7 Apr 2026 15:31:59 +0600 Subject: [PATCH] Fixed documentation confirmation window title --- source/ubinstall-gtk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index d0bc006..6c9a88a 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -86,8 +86,8 @@ void on_open_documentation_confirmation(GtkWidget *self, char *link){ window->CloseButton = yon_gtk_builder_get_widget(builder,"CancelHelpButton"); window->HeaderLabel = yon_gtk_builder_get_widget(builder,"webHeaderNameLabel"); window->AlwaysOpenCheck = yon_gtk_builder_get_widget(builder,"AlwaysOpenDocumentationCheckbox"); - gtk_label_set_text(GTK_LABEL(window->HeaderLabel),TITLE_LABEL); - gtk_window_set_title(GTK_WINDOW(window->Window),TITLE_LABEL); + gtk_label_set_text(GTK_LABEL(window->HeaderLabel),DOCUMENTATION_LABEL); + gtk_window_set_title(GTK_WINDOW(window->Window),DOCUMENTATION_LABEL); gtk_window_set_icon_name(GTK_WINDOW(window->Window),yon_char_append("com.ublinux.",LocaleName)); gtk_widget_show_all(window->Window); g_signal_connect(G_OBJECT(window->CloseButton),"clicked",G_CALLBACK(on_subwindow_close),NULL);