Skip to content
Snippets Groups Projects
Commit 7d856899 authored by Léo Banno-Cloutier's avatar Léo Banno-Cloutier Committed by Sébastien Blin
Browse files

EmojiPicker: Left align to match the emoji button

Gitlab: #1150
Change-Id: I21edc4e1dec474d2fef8a3104edff2e79cdce30f
parent 63687acc
No related branches found
No related tags found
No related merge requests found
...@@ -156,7 +156,11 @@ Rectangle { ...@@ -156,7 +156,11 @@ Rectangle {
} }
function setXposition() { function setXposition() {
return messageBar.width - JamiTheme.emojiPickerWidth; if (UtilsAdapter.isRTL) {
return messageBar.width - JamiTheme.emojiPickerWidth;
} else {
return 0;
}
} }
function setYposition() { function setYposition() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment