From b5bf202f45455d330edbbc8d731d48a74ea8970b Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 17 May 2014 00:36:07 +1000 Subject: [PATCH] Finish of that last bit of work --- sleepyhead/Graphs/gGraphView.cpp | 1 - sleepyhead/Graphs/gGraphView.h | 2 +- sleepyhead/mainwindow.cpp | 5 +++++ sleepyhead/sleepyhead.pro | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index b5f04100..013bdca0 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -965,7 +965,6 @@ void gGraphView::paintGL() bool render_cube = false; //PROFILE.appearance->animations(); // do something to - if (width() <= 0) { return; } if (height() <= 0) { return; } diff --git a/sleepyhead/Graphs/gGraphView.h b/sleepyhead/Graphs/gGraphView.h index 9bede875..882a8d48 100644 --- a/sleepyhead/Graphs/gGraphView.h +++ b/sleepyhead/Graphs/gGraphView.h @@ -22,7 +22,7 @@ #include #include -#ifdef BROKEN_OPENGL_BUILD +#ifndef BROKEN_OPENGL_BUILD #include #endif diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index eadc7129..47cd349d 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -308,6 +308,11 @@ void MainWindow::Startup() { qDebug() << STR_TR_SleepyHeadVersion.toLocal8Bit().data() << "built with Qt" << QT_VERSION_STR << "on" << __DATE__ << __TIME__; + +#ifdef BROKEN_OPENGL_BUILD + qDebug() << "This build has been created especially for computers with older graphics hardware.\n" +#endif + qstatus->setText(tr("Loading Data")); qprogress->show(); //qstatusbar->showMessage(tr("Loading Data"),0); diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 72738d4e..316d0645 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -15,7 +15,7 @@ greaterThan(QT_MAJOR_VERSION,4) { #Windows XP with older intel cards needs the following variable defined #It slows other platforms down way too much -DEFINES += BROKEN_OPENGL_BUILD +#DEFINES += BROKEN_OPENGL_BUILD contains(DEFINES, BROKEN_OPENGL_BUILD) { message("Building with QWidget gGraphView") } else {