From b3c66b852d96d7382753d2036043a706157a9eb8 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 4 Nov 2009 11:47:58 +0000 Subject: [PATCH] Set window title and icon. --- Source/Examples/OpenTK/Test/Multithreading.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Examples/OpenTK/Test/Multithreading.cs b/Source/Examples/OpenTK/Test/Multithreading.cs index 5c8a695e..62a468ba 100644 --- a/Source/Examples/OpenTK/Test/Multithreading.cs +++ b/Source/Examples/OpenTK/Test/Multithreading.cs @@ -1,4 +1,4 @@ -#region License +#region License // // The Open Toolkit Library License // @@ -47,6 +47,7 @@ namespace Examples.Tests { using (Tutorial.T03_Immediate_Mode_Cube game = new Examples.Tutorial.T03_Immediate_Mode_Cube()) { + Utilities.SetWindowTitle(game); game.Run(30.0); } });