From 2bfd0bad4261f9795f015e9136407197df55d425 Mon Sep 17 00:00:00 2001 From: csoler Date: Fri, 10 Feb 2012 20:59:57 +0000 Subject: [PATCH] disabled autodownload when subscribing to a channel. This is a response to a heavy demand from users annoyed by the need to cancel many downloads and the wish to be able to select what to DL in a channel. We could create a popup with a autdownload checkbox (unchecked by default) possibly asking what to DL in the subscribed channel (everything/only last post/nothing) when subscribing to make auto-download a little more visible git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4916 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/ChannelFeed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/ChannelFeed.cpp b/retroshare-gui/src/gui/ChannelFeed.cpp index 21f4e52ad..7775f790e 100644 --- a/retroshare-gui/src/gui/ChannelFeed.cpp +++ b/retroshare-gui/src/gui/ChannelFeed.cpp @@ -537,7 +537,7 @@ void ChannelFeed::subscribeChannel() #endif if (rsChannels) { - rsChannels->channelSubscribe(mChannelId, true, true); + rsChannels->channelSubscribe(mChannelId, true, false); } updateChannelMsgs();