- Fixed crash when closing the main window without the setting "Minimize to Tray Icon"

- Renamed the setting "Do not Minimize to Tray Icon" to "Minimize to Tray Icon" and fixed wrong usage
  Please check your setting!
- Updated english translation


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6557 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-08-04 23:53:29 +00:00
parent e763f46aee
commit c4c5eb5399
6 changed files with 70 additions and 91 deletions

View file

@ -266,12 +266,12 @@ void RshareSettings::setStartMinimized(bool startMinimized)
bool RshareSettings::getCloseToTray()
{
return value("ClosetoTray", false).toBool();
return value("CloseToTray", true).toBool();
}
void RshareSettings::setCloseToTray(bool closeToTray)
{
setValue("ClosetoTray", closeToTray);
setValue("CloseToTray", closeToTray);
}
/** Setting for Notify / Chat and NewsFeeds **/