mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
receiving Ui Signal Before Ui Was First Displayed caused dialog message to appear
This commit is contained in:
parent
e512a2b3b4
commit
9543cbd9c2
@ -7,6 +7,10 @@
|
|||||||
* License. See the file COPYING in the main directory of the source code
|
* License. See the file COPYING in the main directory of the source code
|
||||||
* for more details. */
|
* for more details. */
|
||||||
|
|
||||||
|
#define TEST_MACROS_ENABLED
|
||||||
|
#include <test_macros.h>
|
||||||
|
|
||||||
|
|
||||||
#include <QHostInfo>
|
#include <QHostInfo>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
@ -132,6 +136,7 @@ QString MainWindow::getMainWindowTitle()
|
|||||||
void MainWindow::SetupGUI()
|
void MainWindow::SetupGUI()
|
||||||
{
|
{
|
||||||
setupRunning = true;
|
setupRunning = true;
|
||||||
|
|
||||||
setWindowTitle(getMainWindowTitle());
|
setWindowTitle(getMainWindowTitle());
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
@ -233,11 +238,17 @@ void MainWindow::SetupGUI()
|
|||||||
ui->action_Sidebar_Toggle->setChecked(b);
|
ui->action_Sidebar_Toggle->setChecked(b);
|
||||||
ui->toolBox->setVisible(b);
|
ui->toolBox->setVisible(b);
|
||||||
|
|
||||||
|
bool oldState = ui->actionShowPersonalData->blockSignals(true);
|
||||||
ui->actionShowPersonalData->setChecked(AppSetting->showPersonalData());
|
ui->actionShowPersonalData->setChecked(AppSetting->showPersonalData());
|
||||||
|
ui->actionShowPersonalData->blockSignals(oldState);
|
||||||
|
|
||||||
|
oldState = ui->actionPie_Chart->blockSignals(true);
|
||||||
ui->actionPie_Chart->setChecked(AppSetting->showPieChart());
|
ui->actionPie_Chart->setChecked(AppSetting->showPieChart());
|
||||||
|
ui->actionPie_Chart->blockSignals(oldState);
|
||||||
|
|
||||||
|
oldState = ui->actionDaily_Calendar->blockSignals(true);
|
||||||
ui->actionDaily_Calendar->setChecked(AppSetting->calendarVisible());
|
ui->actionDaily_Calendar->setChecked(AppSetting->calendarVisible());
|
||||||
|
ui->actionDaily_Calendar->blockSignals(oldState);
|
||||||
|
|
||||||
on_tabWidget_currentChanged(0);
|
on_tabWidget_currentChanged(0);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user