X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/6dd66dcafcdc26d1ad609aadd5360a5b3b41518f..HEAD:/src/gui/about.cpp diff --git a/src/gui/about.cpp b/src/gui/about.cpp index 3f8cd21..e749ea1 100644 --- a/src/gui/about.cpp +++ b/src/gui/about.cpp @@ -35,7 +35,7 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) QString s; s.append(tr( - "" + "" "" "
Version: " VJ_RELEASE_VERSION " (" VJ_RELEASE_SUBVERSION ") Rx" @@ -48,7 +48,7 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) "

" "Rx version:" "
" - "Jean-Paul Mari for the debugger integration, ELF/DWARF format, Win64 & Visual Studio 2015/2017 support" + "Jean-Paul Mari for the debugger integration, ELF/DWARF format, Win64 & Visual Studio 2017 support, among additional improvements" "

" "The Virtual Jaguar team would like to express their gratitude to:" "

" @@ -69,6 +69,9 @@ AboutWindow::AboutWindow(QWidget * parent/*= 0*/): QWidget(parent, Qt::Dialog) void AboutWindow::keyPressEvent(QKeyEvent * e) { - if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Return) + // close the window + if ((e->key() == Qt::Key_Escape) || (e->key() == Qt::Key_Return)) + { hide(); + } }