From 6f38eefd90c5d2ef6cf60df9f5259dabe23a41c7 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Fri, 1 Jul 2022 15:06:53 -0400 Subject: [PATCH] Allow Combo Box To Remain Open After Change --- oscar/daily.cpp | 5 +++ oscar/overview.cpp | 23 ++---------- oscar/test_macros.h | 90 +++++++++++++++++++++++---------------------- 3 files changed, 55 insertions(+), 63 deletions(-) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 33b7e309..f76c245e 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -7,6 +7,9 @@ * License. See the file COPYING in the main directory of the source code * for more details. */ +#define TEST_MACROS_ENABLEDoff +#include + #include #include #include @@ -2644,6 +2647,7 @@ void Daily::on_graphCombo_activated(int index) g=GraphView->findGraphTitle(s); g->setVisible(b); + ui->graphCombo->showPopup(); } ui->graphCombo->setCurrentIndex(0); @@ -2749,6 +2753,7 @@ void Daily::on_eventsCombo_activated(int index) bool b = !chan->enabled(); chan->setEnabled(b); ui->eventsCombo->setItemIcon(index,b ? *icon_on : *icon_off); + ui->eventsCombo->showPopup(); } ui->eventsCombo->setCurrentIndex(0); diff --git a/oscar/overview.cpp b/oscar/overview.cpp index a77cb967..e650c27e 100644 --- a/oscar/overview.cpp +++ b/oscar/overview.cpp @@ -7,25 +7,8 @@ * License. See the file COPYING in the main directory of the source code * for more details. */ -#define NEWSTUFF - -#define xDEBUG_FUNCTIONS -#ifdef DEBUG_FUNCTIONS -#include -#define DEBUGQ qDebug() -#define DEBUGL qDebug()< // Features enabled by conditional compilation. #define ENABLE_GENERAL_MODIFICATION_OF_CALENDARS @@ -890,6 +873,7 @@ void Overview::on_graphCombo_activated(int index) g = GraphView->findGraphTitle(s); g->setVisible(b); + ui->graphCombo->showPopup(); } ui->graphCombo->setCurrentIndex(0); updateCube(); @@ -939,3 +923,4 @@ void Overview::on_toggleVisibility_clicked(bool checked) GraphView->updateScale(); GraphView->redraw(); } + diff --git a/oscar/test_macros.h b/oscar/test_macros.h index c2f5e93d..14e6439d 100644 --- a/oscar/test_macros.h +++ b/oscar/test_macros.h @@ -38,74 +38,75 @@ To turn off the the test macros. #include #include -#define DEBUGL qDebug() <