mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
made all groups update their areas manually since they don't draw it
This commit is contained in:
parent
31d805fc04
commit
bbdb424cbe
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
|
||||
namespace MLEM.Ui.Elements {
|
||||
public class Group : Element {
|
||||
|
@ -8,5 +9,10 @@ namespace MLEM.Ui.Elements {
|
|||
this.CanBeSelected = false;
|
||||
}
|
||||
|
||||
public override void Draw(GameTime time, SpriteBatch batch, float alpha, BlendState blendState, SamplerState samplerState, Matrix matrix) {
|
||||
this.UpdateAreaIfDirty();
|
||||
base.Draw(time, batch, alpha, blendState, samplerState, matrix);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -35,7 +35,6 @@ namespace MLEM.Ui.Elements {
|
|||
public override void Update(GameTime time) {
|
||||
base.Update(time);
|
||||
this.SnapPositionToMouse();
|
||||
this.UpdateAreaIfDirty();
|
||||
}
|
||||
|
||||
public override void ForceUpdateArea() {
|
||||
|
|
Loading…
Reference in a new issue