diff --git a/src/app/commoncomponents/JamiSplitView.qml b/src/app/commoncomponents/JamiSplitView.qml
index 64fdb95cabf5a7c116cd217bbb871cc23321fabb..8c7dc0d3a4e724211ac099cbf9a4aaae01cfa484 100644
--- a/src/app/commoncomponents/JamiSplitView.qml
+++ b/src/app/commoncomponents/JamiSplitView.qml
@@ -86,7 +86,7 @@ SplitView {
             // size (4 pixels). This is done to make it easier to grab small scroll-view handles that are
             // adjacent to the SplitView handle. Note: vertically oriented handles are not offset.
             readonly property real extraHandleSize: 4
-            readonly property real handleXPosition: !isRTL ? 0 : -extraHandleSize
+            readonly property real handleXPosition: !UtilsAdapter.isRTL ? 0 : -extraHandleSize
             readonly property real handleSize: handleRoot.defaultSize + extraHandleSize
 
             x: control.orientation === Qt.Horizontal ? handleXPosition : 0