From kde-commits Sun Apr 24 02:13:10 2011 From: =?utf-8?q?Sebastian=20K=C3=BCgler?= Date: Sun, 24 Apr 2011 02:13:10 +0000 To: kde-commits Subject: playground/base/plasma/declarative-applets/replacements/news/package/contents Message-Id: <20110424021310.86717AC866 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=130361136817461 SVN commit 1228971 by sebas: Fix multiple Feeds M +1 -1 config/main.xml M +2 -1 ui/main.qml --- trunk/playground/base/plasma/declarative-applets/replacements/news/package/contents/config/main.xml #1228970:1228971 @@ -8,7 +8,7 @@ - http://planetkde.org/rss20.xml + http://planetkde.org/rss20.xml,http://dot.kde.org/rss.xml --- trunk/playground/base/plasma/declarative-applets/replacements/news/package/contents/ui/main.qml #1228970:1228971 @@ -46,9 +46,10 @@ function configChanged() { source = plasmoid.readConfig("feeds") + var sourceString = new String(source) print("Configuration changed: " + source); - feedSource.connectedSources = source + feedSource.connectedSources = source.split(",") }