mirror of
https://github.com/nextcloud/talk-android
synced 2025-02-03 13:12:01 +00:00
Merge pull request #1731 from nextcloud/noid_check_icon_for_selection_list_inverted
Don't mirror check icon in RTL
This commit is contained in:
commit
bb422fb112
@ -341,7 +341,8 @@ class MagicFirebaseMessagingService : FirebaseMessagingService() {
|
||||
if (hasParticipantsInCall) {
|
||||
for (participant in participantList) {
|
||||
if (participant.actorId == signatureVerification.userEntity.userId &&
|
||||
participant.actorType == Participant.ActorType.USERS) {
|
||||
participant.actorType == Participant.ActorType.USERS
|
||||
) {
|
||||
inCallOnDifferentDevice = true
|
||||
break
|
||||
}
|
||||
|
@ -323,7 +323,8 @@ class ChatController(args: Bundle) :
|
||||
override fun onNext(roomOverall: RoomOverall) {
|
||||
currentConversation = roomOverall.ocs.data
|
||||
Log.d(
|
||||
TAG, "getRoomInfo. token: " + currentConversation?.getToken() +
|
||||
TAG,
|
||||
"getRoomInfo. token: " + currentConversation?.getToken() +
|
||||
" sessionId: " + currentConversation?.sessionId
|
||||
)
|
||||
loadAvatarForStatusBar()
|
||||
|
@ -18,7 +18,7 @@
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<vector android:autoMirrored="true" android:height="24dp"
|
||||
<vector android:autoMirrored="false" android:height="24dp"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z"/>
|
||||
|
Loading…
Reference in New Issue
Block a user