From c9f2915ca0a7b1341d24658849a34a6e34bd003c Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Fri, 5 Dec 2025 15:59:04 +0100 Subject: [PATCH] Add white progress indicator dot during seeking --- Linphone/GeneratedGit.swift | 2 +- .../Recordings/Fragments/RecordingMediaPlayerFragment.swift | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Linphone/GeneratedGit.swift b/Linphone/GeneratedGit.swift index 6ee18628d..39d0efc36 100644 --- a/Linphone/GeneratedGit.swift +++ b/Linphone/GeneratedGit.swift @@ -1,5 +1,5 @@ import Foundation public let APP_GIT_BRANCH = "master" -public let APP_GIT_COMMIT = "36fa752cc" +public let APP_GIT_COMMIT = "fe8432f12" public let APP_GIT_TAG = "6.1.0-alpha" diff --git a/Linphone/UI/Main/Recordings/Fragments/RecordingMediaPlayerFragment.swift b/Linphone/UI/Main/Recordings/Fragments/RecordingMediaPlayerFragment.swift index ef2ab34e7..dd7d9fecd 100644 --- a/Linphone/UI/Main/Recordings/Fragments/RecordingMediaPlayerFragment.swift +++ b/Linphone/UI/Main/Recordings/Fragments/RecordingMediaPlayerFragment.swift @@ -149,6 +149,12 @@ struct RecordingMediaPlayerFragment: View { .foregroundColor(Color.orangeMain500) .frame(width: (self.value / 100) * barWidth, height: isSeeking ? 10 : 5) .clipShape(RoundedRectangle(cornerRadius: radius)) + + Circle() + .fill(Color.white) + .frame(width: 14, height: 14) + .shadow(radius: 2) + .offset(x: (self.value / 100) * barWidth - 7) } .frame(width: barWidth, height: 20) .contentShape(Rectangle())