Browse Source

Merge branch 'master' into fix-shapes-gradients

Krzysztof Krysiński 3 tuần trước cách đây
mục cha
commit
9379e7f1ef
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/PixiEditor/Views/Nodes/ConnectionRenderer.cs

+ 1 - 1
src/PixiEditor/Views/Nodes/ConnectionRenderer.cs

@@ -51,7 +51,7 @@ public class ConnectionRenderer : Control
                     ? socket
                     : null;
 
-            if (inputSocket == null || outputSocket == null)
+            if (inputSocket == null || outputSocket == null || !inputSocket.IsVisible || !outputSocket.IsVisible)
             {
                 continue;
             }