mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-29 09:18:45 -04:00
add chatlobby option to disable sending typing notifications
This commit is contained in:
parent
f3b3d2b262
commit
0ca477d01b
5 changed files with 24 additions and 2 deletions
|
@ -514,6 +514,16 @@ void RshareSettings::setChatSendMessageWithCtrlReturn(bool bValue)
|
|||
setValueToGroup("Chat", "SendMessageWithCtrlReturn", bValue);
|
||||
}
|
||||
|
||||
bool RshareSettings::getChatDoNotSendIsTyping()
|
||||
{
|
||||
return valueFromGroup("Chat", "DoNotSendIsTyping", false).toBool();
|
||||
}
|
||||
|
||||
void RshareSettings::setChatDoNotSendIsTyping(bool bValue)
|
||||
{
|
||||
setValueToGroup("Chat", "DoNotSendIsTyping", bValue);
|
||||
}
|
||||
|
||||
bool RshareSettings::getChatSendAsPlainTextByDef()
|
||||
{
|
||||
return valueFromGroup("Chat", "SendAsPlainTextByDef", false).toBool();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue