diff --git a/radiant/gtkdlgs.cpp b/radiant/gtkdlgs.cpp index 65af8370..412cb3b2 100644 --- a/radiant/gtkdlgs.cpp +++ b/radiant/gtkdlgs.cpp @@ -52,6 +52,7 @@ #include #include #include +#include #include "gtkutil/spinbox.h" #include "gtkutil/guisettings.h" #include @@ -371,6 +372,10 @@ void DoAbout(){ QObject::connect( button, &QPushButton::clicked, [](){ OpenURL( StringOutputStream( 256 )( AppPath_get(), "changelog.txt" ) ); } ); button->setEnabled( false ); } + { + auto button = buttons->addButton( "About Qt", QDialogButtonBox::ButtonRole::NoRole ); + QObject::connect( button, &QPushButton::clicked, &QApplication::aboutQt ); + } } } {