From 95436d65b79c119b87ba3af2f5b2ab595d926270 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Tue, 21 Jun 2022 08:38:04 +0200 Subject: [PATCH] radiant: re-enable Credits and Issues buttons in About window --- radiant/gtkdlgs.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/radiant/gtkdlgs.cpp b/radiant/gtkdlgs.cpp index b77aca29..6d3a0295 100644 --- a/radiant/gtkdlgs.cpp +++ b/radiant/gtkdlgs.cpp @@ -541,7 +541,6 @@ void DoAbout(){ { auto button = create_dialog_button( "Credits", G_CALLBACK( about_button_credits ), 0 ); vbox2.pack_start( button, FALSE, FALSE, 0 ); - gtk_widget_set_sensitive( GTK_WIDGET( button ), FALSE); } { auto button = create_dialog_button( "Changes", G_CALLBACK( about_button_changelog ), 0 ); @@ -550,7 +549,6 @@ void DoAbout(){ { auto button = create_dialog_button( "Issues", G_CALLBACK( about_button_issues ), 0 ); vbox2.pack_start( button, FALSE, FALSE, 0 ); - gtk_widget_set_sensitive( GTK_WIDGET( button ), FALSE); } } } -- 2.39.2