Use decodeURIComponent on the split path, otherwise we present % encoded filenames to the user

wilder-5.14
Kai Uwe Broulik 12 years ago
parent 9ad60d3f62
commit 74ba2b7bb7
  1. 3
      applets/clipboard/contents/ui/ClipboardItemDelegate.qml

@ -155,8 +155,7 @@ PlasmaComponents.ListItem {
horizontalAlignment: Text.AlignHCenter
text: {
var u = modelData.split("/");
return u[u.length - 1];
return decodeURIComponent(u[u.length - 1]);
}
}
}

Loading…
Cancel
Save