You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using `SwingPanel` to embed Swing components (e.g., `EditorTextField`) in Compose, Swing components render on top of Compose popups, causing z-index issues.
70
-
71
-
**Solution 1: For Popup/Dropdown menus**
72
-
1. Enable Jewel's custom popup renderer in `IdeaAgentToolWindowFactory`:
73
-
```kotlin
74
-
JewelFlags.useCustomPopupRenderer =true
75
-
```
76
-
2. Use Jewel's `PopupMenu` instead of `androidx.compose.ui.window.Popup`:
0 commit comments