mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-01 18:23:32 +00:00
LED visualizer - Don't attempt to render really tiny LEDs
This commit is contained in:
parent
1bcee06cb2
commit
72485e5d71
@ -36,6 +36,10 @@ namespace Artemis.UI.Shared.Controls
|
||||
|
||||
private void CreateLedGeometry()
|
||||
{
|
||||
// The minimum required size for geometry to be created
|
||||
if (Led.RgbLed.Size.Width < 2 || Led.RgbLed.Size.Height < 2)
|
||||
return;
|
||||
|
||||
switch (Led.RgbLed.Shape)
|
||||
{
|
||||
case Shape.Custom:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user