mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-15 17:40:35 -04:00
Added a new image to the private chat window to set the window always on top.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4409 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
71f632b99f
commit
b86407f395
9 changed files with 391 additions and 64 deletions
|
@ -158,6 +158,16 @@ void RsharePeerSettings::setPrivateChatFont(const std::string &peerId, const QSt
|
|||
set(peerId, "PrivateChatFont", value);
|
||||
}
|
||||
|
||||
bool RsharePeerSettings::getPrivateChatOnTop(const std::string &peerId)
|
||||
{
|
||||
return get(peerId, "PrivateChatOnTop", false).toBool();
|
||||
}
|
||||
|
||||
void RsharePeerSettings::setPrivateChatOnTop(const std::string &peerId, bool value)
|
||||
{
|
||||
set(peerId, "PrivateChatOnTop", value);
|
||||
}
|
||||
|
||||
void RsharePeerSettings::saveWidgetInformation(const std::string &peerId, QWidget *widget)
|
||||
{
|
||||
std::string gpgId;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue