diff --git a/shell/view/clipboardicon.py b/shell/view/clipboardicon.py index cb33e84a..ef0de29e 100644 --- a/shell/view/clipboardicon.py +++ b/shell/view/clipboardicon.py @@ -124,7 +124,8 @@ class ClipboardIcon(CanvasIcon): path_exists = False if path_exists: - activityfactory.create_with_uri(self._activity, path) + uri = 'file://' + path + activityfactory.create_with_uri(self._activity, uri) else: logging.debug("Clipboard item file path %s didn't exist" % path)