Skip to content

Commit

Permalink
fix(tier4_screen_capture_panel): set format date (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
taikitanaka3 authored Nov 20, 2023
1 parent 75fce96 commit 8b477b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void setFormatDate(QLabel * line, double time)
char buffer[128];
auto seconds = static_cast<time_t>(time);
strftime(buffer, sizeof(buffer), "%Y-%m-%d-%H-%M-%S", localtime(&seconds));
line->setText(QString("- ") + QString(buffer) + QString(".mp4"));
line->setText(QString("-") + QString(buffer));
}

AutowareScreenCapturePanel::AutowareScreenCapturePanel(QWidget * parent)
Expand Down

0 comments on commit 8b477b9

Please sign in to comment.