From 73b443ddf61a76790b6c427a8bb9e8cf7b9e7450 Mon Sep 17 00:00:00 2001 From: thunder2 Date: Wed, 12 Jan 2011 23:13:19 +0000 Subject: [PATCH] Uncheck the sign box by default for anonymous forums. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3963 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/forums/CreateForumMsg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/forums/CreateForumMsg.cpp b/retroshare-gui/src/gui/forums/CreateForumMsg.cpp index b3db96615..be27624b4 100644 --- a/retroshare-gui/src/gui/forums/CreateForumMsg.cpp +++ b/retroshare-gui/src/gui/forums/CreateForumMsg.cpp @@ -130,6 +130,8 @@ void CreateForumMsg::newMsg() } else { + /* Uncheck sign box by default for anonymous forums */ + ui.signBox->setChecked(false); ui.signBox->setEnabled(true); } }