Add back explicit binds.

This commit is contained in:
Dean Herbert
2017-04-10 17:10:15 +09:00
parent ba03a98992
commit 5af4259ab4
7 changed files with 16 additions and 16 deletions

View File

@ -92,12 +92,6 @@ namespace osu.Game.Graphics.UserInterface
}
}
private readonly Bindable<bool> current = new Bindable<bool>();
public Bindable<bool> Current
{
get { return current; }
set { current.BindTo(value); }
}
public Bindable<bool> Current { get; } = new Bindable<bool>();
}
}