1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Renamed brush-update-method

This commit is contained in:
Darth Affe 2016-03-26 18:28:20 +01:00
parent 93d94fdc5a
commit a0a0132ca0

View File

@ -151,13 +151,13 @@ namespace CUE.NET.Devices.Keyboard
/// <param name="flushLeds">Specifies whether all keys (including clean ones) should be updated.</param>
public override void Update(bool flushLeds = false)
{
UpdateKeyGroups();
UpdateBrushes();
// Perform 'real' update
base.Update(flushLeds);
}
private void UpdateKeyGroups()
private void UpdateBrushes()
{
if (Brush != null)
ApplyBrush(this.ToList(), Brush);