mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 06:02:41 -04:00
cleaned the notify dialog a little. Added checkbox for group chat. Not enabled yet though.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1375 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
6333cc4d37
commit
f8ca2fae4c
2 changed files with 339 additions and 323 deletions
|
@ -69,7 +69,7 @@ NotifyDialog::save(QString &errmsg)
|
|||
if (ui.popup_NewMsg->isChecked())
|
||||
notifyflags |= RS_POPUP_MSG;
|
||||
|
||||
if (ui.popup_NewChat->isChecked())
|
||||
// if (ui.popup_NewChat->isChecked())
|
||||
notifyflags |= RS_POPUP_CHAT;
|
||||
|
||||
//if (ui.popup_Call->isChecked())
|
||||
|
@ -118,7 +118,8 @@ void NotifyDialog::load()
|
|||
|
||||
ui.popup_Connect->setChecked(notifyflags & RS_POPUP_CONNECT);
|
||||
ui.popup_NewMsg->setChecked(notifyflags & RS_POPUP_MSG);
|
||||
ui.popup_NewChat->setChecked(notifyflags & RS_POPUP_CHAT);
|
||||
ui.systray_GroupChat->setChecked(true) ;
|
||||
// ui.popup_NewChat->setChecked(notifyflags & RS_POPUP_CHAT);
|
||||
//ui.popup_Call->setChecked(notifyflags & RS_POPUP_CALL);
|
||||
|
||||
ui.notify_Peers->setChecked(newsflags & RS_FEED_TYPE_PEER);
|
||||
|
@ -138,7 +139,8 @@ void NotifyDialog::load()
|
|||
ui.notify_Chat->setEnabled(false);
|
||||
ui.notify_Blogs->setEnabled(false);
|
||||
ui.notify_Downloads->setEnabled(false);
|
||||
ui.popup_NewChat->setEnabled(false);
|
||||
ui.systray_GroupChat->setEnabled(false);
|
||||
// ui.popup_NewChat->setEnabled(false);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue