mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +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()
|
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)
|
switch (Led.RgbLed.Shape)
|
||||||
{
|
{
|
||||||
case Shape.Custom:
|
case Shape.Custom:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user