mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-17 17:43:59 -05:00
Added new friend request toaster from defnax.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5120 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
586e8bc042
commit
9501a4fe2c
14 changed files with 419 additions and 52 deletions
|
|
@ -75,6 +75,8 @@ NotifyPage::save(QString &/*errmsg*/)
|
|||
notifyflags |= RS_POPUP_GROUPCHAT;
|
||||
if (ui.popup_ChatLobby->isChecked())
|
||||
notifyflags |= RS_POPUP_CHATLOBBY;
|
||||
if (ui.popup_ConnectAttempt->isChecked())
|
||||
notifyflags |= RS_POPUP_CONNECT_ATTEMPT;
|
||||
|
||||
if (ui.notify_Peers->isChecked())
|
||||
newsflags |= RS_FEED_TYPE_PEER;
|
||||
|
|
@ -160,6 +162,7 @@ void NotifyPage::load()
|
|||
ui.popup_PrivateChat->setChecked(notifyflags & RS_POPUP_CHAT);
|
||||
ui.popup_GroupChat->setChecked(notifyflags & RS_POPUP_GROUPCHAT);
|
||||
ui.popup_ChatLobby->setChecked(notifyflags & RS_POPUP_CHATLOBBY);
|
||||
ui.popup_ConnectAttempt->setChecked(notifyflags & RS_POPUP_CONNECT_ATTEMPT);
|
||||
|
||||
ui.notify_Peers->setChecked(newsflags & RS_FEED_TYPE_PEER);
|
||||
ui.notify_Channels->setChecked(newsflags & RS_FEED_TYPE_CHAN);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue