Merge pull request #1157 from eightyeight/linux-no-splash

Show the canvas immediately in unix because the splash doesn't work
This commit is contained in:
Daniel Buckmaster 2015-02-08 20:19:31 +11:00
commit 6a96894a9c
4 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ function createCanvas(%windowTitle)
// Create the Canvas // Create the Canvas
%foo = new GuiCanvas(Canvas) %foo = new GuiCanvas(Canvas)
{ {
displayWindow = false; displayWindow = $platform !$= "windows";
}; };
// Set the window title // Set the window title

View file

@ -40,7 +40,7 @@ function createCanvas(%windowTitle)
// Create the Canvas // Create the Canvas
%foo = new GuiCanvas(Canvas) %foo = new GuiCanvas(Canvas)
{ {
displayWindow = false; displayWindow = $platform !$= "windows";
}; };
// Set the window title // Set the window title

View file

@ -40,7 +40,7 @@ function createCanvas(%windowTitle)
// Create the Canvas // Create the Canvas
%foo = new GuiCanvas(Canvas) %foo = new GuiCanvas(Canvas)
{ {
displayWindow = false; displayWindow = $platform !$= "windows";
}; };
// Set the window title // Set the window title

View file

@ -40,7 +40,7 @@ function createCanvas(%windowTitle)
// Create the Canvas // Create the Canvas
%foo = new GuiCanvas(Canvas) %foo = new GuiCanvas(Canvas)
{ {
displayWindow = false; displayWindow = $platform !$= "windows";
}; };
// Set the window title // Set the window title