Skip to content
Snippets Groups Projects
Commit 7330a870 authored by François-Simon Fauteux-Chapleau's avatar François-Simon Fauteux-Chapleau
Browse files

JamiSplitView: fix crash for right-to-left languages

GitLab: #1829
Change-Id: I273d23ae5a8cfb38862259ab413a0aa778ab0341
parent 7243b10e
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment