diff --git a/containments/desktop/package/contents/ui/FolderViewLayer.qml b/containments/desktop/package/contents/ui/FolderViewLayer.qml --- a/containments/desktop/package/contents/ui/FolderViewLayer.qml +++ b/containments/desktop/package/contents/ui/FolderViewLayer.qml @@ -63,7 +63,9 @@ function goHome() { if (folderView.url != plasmoid.configuration.url) { - folderView.url = plasmoid.configuration.url; + folderView.url = Qt.binding(function() { + return plasmoid.configuration.url; + }); folderView.history = []; folderView.updateHistory(); }