Skip to content
Snippets Groups Projects
Unverified Commit 4e6336d8 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

chatview: remove useless /

file:// is enough for the scheme

Change-Id: Ic1500155f9025b8f4c55252c0a5468c822d8c315
parent 9cc18488
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ Loader {
enabled: canOpen
onHoveredChanged: {
dataTransferItem.hoveredLink = enabled && hovered ?
("file:///" + Body) : ""
("file://" + Body) : ""
}
cursorShape: enabled ?
Qt.PointingHandCursor :
......@@ -300,7 +300,7 @@ Loader {
antialiasing: true
autoTransform: false
asynchronous: true
source: "file:///" + Body
source: "file://" + Body
property real aspectRatio: implicitWidth / implicitHeight
property real adjustedWidth: Math.min(maxSize,
Math.max(minSize,
......
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