mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-29 09:18:45 -04:00
added a checkbox to load emoticons in forums as an option, so as to avoid crazy loading times. Disabled by default until we fix the RsHtml code
This commit is contained in:
parent
8568199497
commit
34962c343a
6 changed files with 34 additions and 5 deletions
|
@ -1041,12 +1041,18 @@ bool RshareSettings::getForumLoadEmbeddedImages()
|
|||
{
|
||||
return valueFromGroup("Forum", "LoadEmbeddedImages", false).toBool();
|
||||
}
|
||||
|
||||
bool RshareSettings::getForumLoadEmoticons()
|
||||
{
|
||||
return valueFromGroup("Forum", "LoadEmoticons", false).toBool();
|
||||
}
|
||||
void RshareSettings::setForumLoadEmbeddedImages(bool value)
|
||||
{
|
||||
setValueToGroup("Forum", "LoadEmbeddedImages", value);
|
||||
}
|
||||
|
||||
void RshareSettings::setForumLoadEmoticons(bool value)
|
||||
{
|
||||
setValueToGroup("Forum", "LoadEmoticons", value);
|
||||
}
|
||||
/* Channel */
|
||||
bool RshareSettings::getChannelLoadThread()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue