diff --git a/assets/images/new_call_hovered.svg b/assets/images/new_call_hovered.svg index 77902f2a8..c624484cc 100644 --- a/assets/images/new_call_hovered.svg +++ b/assets/images/new_call_hovered.svg @@ -6,7 +6,7 @@ - + diff --git a/assets/images/new_conference_hovered.svg b/assets/images/new_conference_hovered.svg index 1b9e9bae4..5156b6192 100644 --- a/assets/images/new_conference_hovered.svg +++ b/assets/images/new_conference_hovered.svg @@ -6,7 +6,7 @@ - + diff --git a/src/app/providers/ImageProvider.cpp b/src/app/providers/ImageProvider.cpp index 9780814b3..5be14e8e8 100644 --- a/src/app/providers/ImageProvider.cpp +++ b/src/app/providers/ImageProvider.cpp @@ -246,7 +246,7 @@ ImageProvider::ImageProvider () : QQuickImageProvider( QImage ImageProvider::requestImage (const QString &id, QSize *size, const QSize &requestedSize) { const QString path = QStringLiteral(":/assets/images/%1").arg(id); - qInfo() << QStringLiteral("Image `%1` requested.").arg(path); + qDebug() << QStringLiteral("Image `%1` requested.").arg(path); QElapsedTimer timer; timer.start(); @@ -298,7 +298,7 @@ QImage ImageProvider::requestImage (const QString &id, QSize *size, const QSize QPainter painter(&image); renderer.render(&painter); - qInfo() << QStringLiteral("Image `%1` loaded in %2 milliseconds.").arg(path).arg(timer.elapsed()); + qDebug() << QStringLiteral("Image `%1` loaded in %2 milliseconds.").arg(path).arg(timer.elapsed()); return image; } diff --git a/src/components/other/colors/Colors.cpp b/src/components/other/colors/Colors.cpp index 2d68f0aa3..73ffbbdce 100644 --- a/src/components/other/colors/Colors.cpp +++ b/src/components/other/colors/Colors.cpp @@ -49,8 +49,8 @@ Colors::Colors (QObject *parent) : QObject(parent) { #if LINPHONE_FRIDAY if (isLinphoneFriday()) { setProperty("i", QColor("#F48D8D")); - setProperty("s", QColor("#F58585")); - setProperty("t", QColor("#FFC5C5")); + setProperty("b", QColor("#F58585")); + setProperty("m", QColor("#FFC5C5")); } #endif // if LINPHONE_FRIDAY } diff --git a/ui/modules/Common/Constants/Constants.qml b/ui/modules/Common/Constants/Constants.qml index 7b053ae5c..59cdba5c0 100644 --- a/ui/modules/Common/Constants/Constants.qml +++ b/ui/modules/Common/Constants/Constants.qml @@ -9,6 +9,6 @@ QtObject { property int sizeMax: 999999 property string imagesFormat: '.svg' - // property string imagesPath: 'image://internal/' - property string imagesPath: 'qrc:/assets/images/' + property string imagesPath: 'image://internal/' + // property string imagesPath: 'qrc:/assets/images/' }