Skip to content

Commit

Permalink
Fixes #337
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Shapiro committed Aug 8, 2021
1 parent 782dbea commit 06314df
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions src/Myra/Graphics2D/UI/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,6 @@ public override bool Enabled
}
}

public override bool Visible
{
get
{
return base.Visible;
}
set
{
if (base.Visible == value)
{
return;
}

base.Visible = value;

foreach (var item in ChildrenCopy)
{
item.Visible = value;
}
}
}

public override Desktop Desktop
{
get
Expand Down

0 comments on commit 06314df

Please sign in to comment.