From b0fec0c74a78673afdd5185464b9a6c857bf7d90 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 31 Oct 2011 00:23:59 +1000 Subject: [PATCH] Calender drop down bug fix --- daily.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daily.cpp b/daily.cpp index 5bc39817..75ce947e 100644 --- a/daily.cpp +++ b/daily.cpp @@ -888,7 +888,8 @@ void Daily::on_nextDayButton_clicked() void Daily::on_calButton_toggled(bool checked) { - bool b=!ui->calendar->isVisible(); + //bool b=!ui->calendar->isVisible(); + bool b=checked; ui->calendar->setVisible(b); if (!b) ui->calButton->setArrowType(Qt::DownArrow); else ui->calButton->setArrowType(Qt::UpArrow);