mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
use the new system in panel
This commit is contained in:
parent
5a8e74c5f3
commit
cc06b827ff
1 changed files with 12 additions and 12 deletions
|
@ -147,7 +147,7 @@ namespace MLEM.Ui.Elements {
|
|||
this.UpdateAreaIfDirty();
|
||||
if (this.scrollOverflow && this.renderTarget != null) {
|
||||
// draw children onto the render target
|
||||
batch.GraphicsDevice.SetRenderTarget(this.renderTarget);
|
||||
using (batch.GraphicsDevice.WithRenderTarget(this.renderTarget)) {
|
||||
batch.GraphicsDevice.Clear(Color.Transparent);
|
||||
// offset children by the render target's location
|
||||
var area = this.GetRenderTargetArea();
|
||||
|
@ -158,7 +158,7 @@ namespace MLEM.Ui.Elements {
|
|||
batch.End();
|
||||
// also draw any children early within the render target with the translation applied
|
||||
base.DrawEarly(time, batch, alpha, blendState, samplerState, trans);
|
||||
batch.GraphicsDevice.SetRenderTarget(null);
|
||||
}
|
||||
} else {
|
||||
base.DrawEarly(time, batch, alpha, blendState, samplerState, matrix);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue