From 8774f63e50c411248fb74efc9bdb310455ce9489 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Thu, 31 Jul 2025 14:52:08 +0200 Subject: [PATCH] change bell icon --- Linphone/data/image/bell-ringer.svg | 3 --- Linphone/data/image/bell-ringing.svg | 1 + Linphone/data/image/bell-simple.svg | 1 - Linphone/data/image/bell.svg | 1 + Linphone/view/Control/Display/Contact/Voicemail.qml | 2 +- Linphone/view/Style/AppIcons.qml | 7 +++---- 6 files changed, 6 insertions(+), 9 deletions(-) delete mode 100644 Linphone/data/image/bell-ringer.svg create mode 100644 Linphone/data/image/bell-ringing.svg delete mode 100644 Linphone/data/image/bell-simple.svg create mode 100644 Linphone/data/image/bell.svg diff --git a/Linphone/data/image/bell-ringer.svg b/Linphone/data/image/bell-ringer.svg deleted file mode 100644 index c234da3ce..000000000 --- a/Linphone/data/image/bell-ringer.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/Linphone/data/image/bell-ringing.svg b/Linphone/data/image/bell-ringing.svg new file mode 100644 index 000000000..7535b22d2 --- /dev/null +++ b/Linphone/data/image/bell-ringing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/data/image/bell-simple.svg b/Linphone/data/image/bell-simple.svg deleted file mode 100644 index 24fab4f08..000000000 --- a/Linphone/data/image/bell-simple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Linphone/data/image/bell.svg b/Linphone/data/image/bell.svg new file mode 100644 index 000000000..7a51a424b --- /dev/null +++ b/Linphone/data/image/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Linphone/view/Control/Display/Contact/Voicemail.qml b/Linphone/view/Control/Display/Contact/Voicemail.qml index f63c4f5a7..814f5fd2d 100644 --- a/Linphone/view/Control/Display/Contact/Voicemail.qml +++ b/Linphone/view/Control/Display/Contact/Voicemail.qml @@ -57,7 +57,7 @@ Rectangle{ EffectImage { anchors.fill: parent anchors.margins: Math.round(1.5 * DefaultStyle.dp) * scaleFactor - imageSource: AppIcons.bellMwi + imageSource: AppIcons.bell colorizationColor: DefaultStyle.grey_0 } } diff --git a/Linphone/view/Style/AppIcons.qml b/Linphone/view/Style/AppIcons.qml index cc4594179..d98952c23 100644 --- a/Linphone/view/Style/AppIcons.qml +++ b/Linphone/view/Style/AppIcons.qml @@ -97,8 +97,6 @@ QtObject { property string mediaEncryptionZrtpPq: "image://internal/media_encryption_zrtp_pq.svg" property string pencil: "image://internal/pencil-simple.svg" property string shareNetwork: "image://internal/share-network.svg" - property string bell: "image://internal/bell-simple.svg" - property string bellSlash: "image://internal/bell-slash.svg" property string question: "image://internal/question.svg" property string settings: "image://internal/gear.svg" property string clock: "image://internal/clock.svg" @@ -131,13 +129,14 @@ QtObject { property string mobile: "image://internal/device-mobile-camera.svg" property string desktop: "image://internal/desktop.svg" property string calendar: "image://internal/calendar-blank.svg" + property string bell: "image://internal/bell.svg" + property string bellSlash: "image://internal/bell-slash.svg" property string bellDnd: "image://internal/bell-dnd.svg" - property string bellRinger: "image://internal/bell-ringer.svg" + property string bellRinger: "image://internal/bell-ringing.svg" property string voicemail: "image://internal/voicemail.svg" property string power: "image://internal/power.svg" property string resourcePackage: "image://internal/package.svg" property string appWindow: "image://internal/app-window.svg" - property string bellMwi: "image://internal/bell-simple.svg" property string callForward: "image://internal/call-forward.svg" property string registrationDeactivated: "image://internal/registration_deactivated.svg" property string registrationProgress: "image://internal/registration_progress.svg"