Rename variable
This commit is contained in:
parent
30180dcb1e
commit
2a9a0a3d88
1 changed files with 5 additions and 5 deletions
|
|
@ -33,20 +33,20 @@ namespace MatterHackers.MatterControl
|
|||
{
|
||||
public class WinformsSingleWindowProvider : SingleWindowProvider
|
||||
{
|
||||
private OpenGLSystemWindow winform;
|
||||
private OpenGLSystemWindow openGLPlatformWindow;
|
||||
|
||||
public override void ShowSystemWindow(SystemWindow systemWindow)
|
||||
{
|
||||
if (platformWindow == null)
|
||||
{
|
||||
winform = new OpenGLSystemWindow();
|
||||
winform.WindowProvider = this;
|
||||
openGLPlatformWindow = new OpenGLSystemWindow();
|
||||
openGLPlatformWindow.WindowProvider = this;
|
||||
WinformsSystemWindow.SingleWindowMode = true;
|
||||
|
||||
platformWindow = winform;
|
||||
platformWindow = openGLPlatformWindow;
|
||||
}
|
||||
|
||||
systemWindow.PlatformWindow = winform;
|
||||
systemWindow.PlatformWindow = openGLPlatformWindow;
|
||||
base.ShowSystemWindow(systemWindow);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue