mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-08 22:52:54 -04:00
New setting for adding the feeds at the end in friend storm.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3422 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
7f837e9778
commit
e67412cc8c
6 changed files with 55 additions and 21 deletions
|
@ -136,6 +136,7 @@ void RshareSettings::initSettings()
|
|||
setDefault(SETTING_NOTIFY_FLAGS, defNotify);
|
||||
|
||||
setDefault("DisplayTrayGroupChat", true);
|
||||
setDefault("AddFeedsAtEnd", false);
|
||||
}
|
||||
|
||||
/** Gets/sets the currently saved chat avatar. */
|
||||
|
@ -278,6 +279,16 @@ void RshareSettings::setDisplayTrayGroupChat(bool bValue)
|
|||
setValue("DisplayTrayGroupChat", bValue);
|
||||
}
|
||||
|
||||
bool RshareSettings::getAddFeedsAtEnd()
|
||||
{
|
||||
return value("AddFeedsAtEnd").toBool();
|
||||
}
|
||||
|
||||
void RshareSettings::setAddFeedsAtEnd(bool bValue)
|
||||
{
|
||||
setValue("AddFeedsAtEnd", bValue);
|
||||
}
|
||||
|
||||
/** Returns true if RetroShare is set to run on system boot. */
|
||||
bool
|
||||
RshareSettings::runRetroshareOnBoot()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue