mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-09 22:05:41 +00:00
Added missing TitleChanged event.
This commit is contained in:
parent
03512805c8
commit
4af10e6c68
|
@ -1246,8 +1246,11 @@ namespace OpenTK.Platform.X11
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null && value != Title)
|
||||||
Functions.XStoreName(window.Display, window.WindowHandle, value);
|
Functions.XStoreName(window.Display, window.WindowHandle, value);
|
||||||
|
|
||||||
|
if (TitleChanged != null)
|
||||||
|
TitleChanged(this, EventArgs.Empty);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue