linux: Remove env var

This commit is contained in:
Hylke Bons 2016-04-10 19:33:35 -07:00
parent a186f73e68
commit 86aa6524f6
2 changed files with 1 additions and 6 deletions

View file

@ -22,11 +22,6 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<EnvironmentVariables>
<EnvironmentVariables>
<Variable name="GTK_DEBUG" value="interactive" />
</EnvironmentVariables>
</EnvironmentVariables>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>

View file

@ -62,7 +62,7 @@ namespace SparkleShare {
public void Run ()
{
(application as GLib.Application).Run (0, null);
(application as GLib.Application).Run ("org.sparkleshare.SparkleShare", new string [0]);
}