Added missing TitleChanged event.

This commit is contained in:
the_fiddler 2009-11-04 20:49:38 +00:00
parent 03512805c8
commit 4af10e6c68

View file

@ -1246,8 +1246,11 @@ namespace OpenTK.Platform.X11
}
set
{
if (value != null)
if (value != null && value != Title)
Functions.XStoreName(window.Display, window.WindowHandle, value);
if (TitleChanged != null)
TitleChanged(this, EventArgs.Empty);
}
}