don't need the clip check -- its always our bounds
diff --git a/src/artboard.cpp b/src/artboard.cpp
index 5f8032c..101230e 100644
--- a/src/artboard.cpp
+++ b/src/artboard.cpp
@@ -487,12 +487,6 @@
 AABB Artboard::bounds() const { return AABB(0.0f, 0.0f, width(), height()); }
 
 bool Artboard::isTranslucent() const {
-    if (clip()) {
-        // can we query to know if the path contains our bounds?
-        // if so, we could effectively ignore it (and not return true)
-        return true;
-    }
-
     // What does it mean to have a m_FrameOrigin? Does that mean we'll not draw inside
     // our bounds()? If that's true, will that make the client think we're translucent?