mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Use System Locale to determine first day of week
This commit is contained in:
parent
f1e2c215ab
commit
c3b5fa51f6
@ -210,6 +210,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
||||
format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
|
||||
ui->calendar->setWeekdayTextFormat(Qt::Saturday, format);
|
||||
ui->calendar->setWeekdayTextFormat(Qt::Sunday, format);
|
||||
ui->calendar->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
|
||||
|
||||
ui->tabWidget->setCurrentWidget(ui->details);
|
||||
|
||||
|
@ -31,6 +31,9 @@ ExportCSV::ExportCSV(QWidget *parent) :
|
||||
ui->endDate->calendarWidget()->setWeekdayTextFormat(Qt::Saturday, format);
|
||||
ui->endDate->calendarWidget()->setWeekdayTextFormat(Qt::Sunday, format);
|
||||
|
||||
ui->startDate->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
|
||||
ui->endDate->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
|
||||
|
||||
// Connect the signals to update which days have CPAP data when the month is changed
|
||||
connect(ui->startDate->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(startDate_currentPageChanged(int,int)));
|
||||
connect(ui->endDate->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(endDate_currentPageChanged(int,int)));
|
||||
|
@ -33,6 +33,9 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
||||
}
|
||||
ui->dateStart->setDisplayFormat(shortformat);
|
||||
ui->dateEnd->setDisplayFormat(shortformat);
|
||||
ui->dateStart->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
|
||||
ui->dateEnd->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
|
||||
|
||||
|
||||
// Stop both calendar drop downs highlighting weekends in red
|
||||
QTextCharFormat format = ui->dateStart->calendarWidget()->weekdayTextFormat(Qt::Saturday);
|
||||
|
Loading…
Reference in New Issue
Block a user