mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-21 16:05:26 +02:00
windows: fix participant screenshot
Change-Id: I41f847c4b60d3f303c5a92b61b0035b5e8c82b68
This commit is contained in:
parent
4a583ed195
commit
b3f30f42fa
1 changed files with 4 additions and 0 deletions
|
@ -1154,7 +1154,11 @@ CallAdapter::takeScreenshot(const QImage& image, const QString& path)
|
|||
{
|
||||
QString name = QString("%1 %2")
|
||||
.arg(tr("Screenshot"))
|
||||
#ifdef WIN32
|
||||
.arg(QDateTime::currentDateTime().toString("yyyy-MM-dd HHmmss"));
|
||||
#else
|
||||
.arg(QDateTime::currentDateTime().toString(Qt::ISODate));
|
||||
#endif
|
||||
|
||||
bool fileAlreadyExists = true;
|
||||
int nb = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue