From 00f8afafb39ececda8a508a6e4d3f1674ce30713 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 26 Dec 2011 02:38:37 +1000 Subject: [PATCH] Disabled transitions as it's too slow, updated summary title message --- daily.cpp | 6 ++++-- mainwindow.cpp | 5 ++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/daily.cpp b/daily.cpp index 938da7ef..f0041c64 100644 --- a/daily.cpp +++ b/daily.cpp @@ -538,15 +538,16 @@ void Daily::LoadDate(QDate date) void Daily::on_calendar_selectionChanged() { + this->setCursor(Qt::BusyCursor); if (previous_date.isValid()) { - GraphView->fadeOut(); + // GraphView->fadeOut(); Unload(previous_date); } bool fadedir=previous_date < ui->calendar->selectedDate(); ZombieMeterMoved=false; Load(ui->calendar->selectedDate()); - GraphView->fadeIn(fadedir); + //GraphView->fadeIn(fadedir); ui->calButton->setText(ui->calendar->selectedDate().toString(Qt::TextDate)); ui->calendar->setFocus(Qt::ActiveWindowFocusReason); @@ -560,6 +561,7 @@ void Daily::on_calendar_selectionChanged() ui->weightSpinBox->setDecimals(3); ui->weightSpinBox->setSuffix(STR_UNIT_KG); } + this->setCursor(Qt::ArrowCursor); } void Daily::ResetGraphLayout() { diff --git a/mainwindow.cpp b/mainwindow.cpp index 0f9cf350..0079f183 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -340,6 +340,7 @@ void MainWindow::on_action_Import_Data_triggered() } file.close(); } + on_summaryButton_clicked(); } else { mainwin->Notify("Import Problem\n\nCouldn't find any new Machine Data at the locations given"); } @@ -372,9 +373,7 @@ QString htmlHeader() "" "" "
" -"

SleepyHead v"+VersionString+" "+ReleaseStatus+"

" -"

This page is being redesigned to be more useful... Please send me your ideas on what you'd like to see here :)

" -"

The plan is to get the content happening first, then make the layout pretty...

" +"

SleepyHead v"+VersionString+"

This is a beta software and some functionality may not work as intended yet.
Please report any bugs you find to SleepyHead's SourceForge page.
" "
" "
"); }