statusicon: Fix delay in menu closing when clicking Add...

This commit is contained in:
Hylke Bons 2012-09-26 12:01:58 +02:00
parent 4336c8ef40
commit 1f964f5267
2 changed files with 2 additions and 3 deletions

View file

@ -9,14 +9,13 @@ SparkleShare is an Open Source collaboration and sharing tool that is designed t
|-------------------:|:--------------------------------------------------|
| **Website**: | http://www.sparkleshare.org/ |
| **Twitter**: | https://www.twitter.com/SparkleShare |
| **Downloads**: | https://github.com/hbons/SparkleShare/downloads |
| **Development**: | https://github.com/hbons/SparkleShare |
| **IRC channel**: | #sparkleshare on irc.gnome.org |
### License
SparkleShare is Open Source software and licensed under the `GNU General Public License version 3 or later`. You are welcome to change and redistribute it under certain conditions.For more information see the `legal/LICENSE` file.
SparkleShare is Open Source software and licensed under the `GNU General Public License version 3 or later`. You are welcome to change and redistribute it under certain conditions.For more information see the `legal/License.txt` file.
### Setting up a host

View file

@ -201,7 +201,7 @@ namespace SparkleShare {
public void AddHostedProjectClicked ()
{
Program.Controller.ShowSetupWindow (PageType.Add);
new Thread (() => Program.Controller.ShowSetupWindow (PageType.Add)).Start ();
}