Fix tooltip in nostalgia options not being resized. (Thanks 123DMWM)

This commit is contained in:
UnknownShadow200 2016-06-06 22:06:43 +10:00
parent 0cfd1c2e37
commit c738c22e32

View File

@ -64,6 +64,11 @@ namespace ClassicalSharp.Gui {
api.Texturing = false;
}
public override void OnResize( int oldWidth, int oldHeight, int width, int height ) {
base.OnResize( oldWidth, oldHeight, width, height );
infoWidget.OnResize( oldWidth, oldHeight, width, height );
}
public override void Dispose() {
base.Dispose();
infoWidget.Dispose();