Fixed group chat event icons

This commit is contained in:
Sylvain Berfini 2025-05-13 16:35:51 +02:00
parent 34af601090
commit e5dfb17131
2 changed files with 17 additions and 6 deletions

View file

@ -116,22 +116,24 @@ class EventModel
EventLog.Type.ConferenceEphemeralMessageLifetimeChanged -> {
R.drawable.clock_countdown
}
EventLog.Type.ConferenceTerminated,
EventLog.Type.ConferenceSecurityEvent -> {
R.drawable.warning_circle
}
EventLog.Type.ConferenceSubjectChanged -> {
R.drawable.pencil_simple
}
EventLog.Type.ConferenceCreated,
EventLog.Type.ConferenceParticipantDeviceAdded,
EventLog.Type.ConferenceParticipantDeviceRemoved -> {
EventLog.Type.ConferenceParticipantAdded,
EventLog.Type.ConferenceCreated -> {
R.drawable.door_open
}
EventLog.Type.ConferenceParticipantRemoved,
EventLog.Type.ConferenceTerminated -> {
R.drawable.door
}
EventLog.Type.ConferenceParticipantAdded -> {
EventLog.Type.ConferenceParticipantDeviceAdded -> {
R.drawable.user_circle_plus
}
EventLog.Type.ConferenceParticipantRemoved -> {
EventLog.Type.ConferenceParticipantDeviceRemoved -> {
R.drawable.user_circle_minus
}
EventLog.Type.ConferenceParticipantSetAdmin -> {

View file

@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="256"
android:viewportHeight="256">
<path
android:pathData="M232,216L208,216L208,40a16,16 0,0 0,-16 -16L64,24A16,16 0,0 0,48 40L48,216L24,216a8,8 0,0 0,0 16L232,232a8,8 0,0 0,0 -16ZM192,216L176,216L176,40h16ZM64,40h96L160,216L64,216ZM144,132a12,12 0,1 1,-12 -12A12,12 0,0 1,144 132Z"
android:fillColor="#4e6074"/>
</vector>