--- Vago/trunk/Vago/about.cpp 2016/10/12 21:35:13 1054 +++ s10k/Vago/about.cpp 2017/12/30 13:43:28 1092 @@ -7,11 +7,9 @@ About::About(QWidget *parent) : { ui->setupUi(this); this->setAttribute(Qt::WA_DeleteOnClose,true ); //destroy itself once finished. - this->layout()->setSizeConstraint( QLayout::SetFixedSize ); //fixed size - ui->lbAbout->setOpenExternalLinks(true); //allow navigate to oni central ui->lbAbout->setText("" - "Vago GUI "+GlobalVars::AppVersion+"" - "

" + "

Vago GUI " + GlobalVars::AppVersion + "

" + "

" "Written by s10k

" "Build Date " + __DATE__ + " " + __TIME__ + "

" "Thanks to:
" @@ -31,15 +29,23 @@ About::About(QWidget *parent) : "Antonio Borondo for the documentation how to setup QuaZIP
" "Arseny Kapoulkine (and contributors)for pugixml library
" "smashingmagazine for the folder icon :)
" - "Freepik and Flaticon by the background image wizard icon
" - "

" - "Visit us at:
" - "" - "oni.bungie.org" - "
" - "" + "Freepik and Flaticon by the background image wizard and text editing icons
" + "qtiplot authors for line numbers in QTextEdit
" + "d1vanov for basic-xml-syntax-highlighter class
" "

" ""); // Don't use rich text in qtdesigner because it generates platform dependent code + + ui->lbOniCommunity->setText("" + "

" + "

" + "Visit us at:
" + "" + "oni.bungie.org" + "" + "
" + "

" + "" + ); } About::~About()