mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Generate bookmark text with local time zone
Use the local time zone to generate the strings displayed for new bookmarks. These are displayed to the user and are not saved to disk.
This commit is contained in:
parent
f2218f14e5
commit
c46f1404db
@ -2216,7 +2216,7 @@ void Daily::on_bookmarkTable_itemClicked(QTableWidgetItem *item)
|
||||
void Daily::addBookmark(qint64 st, qint64 et, QString text)
|
||||
{
|
||||
ui->bookmarkTable->blockSignals(true);
|
||||
QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::UTC);
|
||||
QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::LocalTime);
|
||||
int row=ui->bookmarkTable->rowCount();
|
||||
ui->bookmarkTable->insertRow(row);
|
||||
QTableWidgetItem *tw=new QTableWidgetItem(text);
|
||||
@ -2244,7 +2244,7 @@ void Daily::on_addBookmarkButton_clicked()
|
||||
{
|
||||
qint64 st,et;
|
||||
GraphView->GetXBounds(st,et);
|
||||
QDateTime d=QDateTime::fromTime_t(st/1000L);
|
||||
QDateTime d=QDateTime::fromTime_t(st/1000L, Qt::LocalTime);
|
||||
|
||||
addBookmark(st,et, tr("Bookmark at %1").arg(d.time().toString("HH:mm:ss")));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user