IJPL-172384 Intellij IDEA 2024.3 freezes on opening Context Menu (Opt + Enter) using Catppuccin Latte or Gerry* Light themes

(cherry picked from commit d6e781abe0adbb39b2037c4e0c751ecefd7ed9a8)

IJ-CR-154778

GitOrigin-RevId: bab7b9840f607f3252f2c9112ebee348f2ce1426
This commit is contained in:
Pavel Porvatov
2025-02-07 19:50:08 +01:00
committed by intellij-monorepo-bot
parent 8c3b6796a7
commit ab6b288cae
2 changed files with 5 additions and 1 deletions

View File

@@ -2185,7 +2185,9 @@ public class AbstractPopup implements JBPopup, ScreenAreaConsumer, AlignedPopup
size = window.getSize(); // use current window size
}
else {
JBInsets.addTo(size, insets);
if (!Registry.is("ide.popup.fix.ijpl172384", false)) {
JBInsets.addTo(size, insets);
}
if (LOG.isDebugEnabled()) {
LOG.debug("Update content preferred size: width = " + size.width + " height = " + size.height);
}

View File

@@ -62,6 +62,8 @@ ide.forcedShowTooltip.description=Shortcut for forced show tooltip.
ide.popup.auto.delay=500
ide.popup.auto.delay.description=The delay in milliseconds before a sub-popup is automatically shown.
ide.popup.fix.ijpl172384=false
ide.popup.fix.ijpl172384.description=Fix of IJPL-172384. The key will be removed after the verification
ide.instant.shutdown=true
ide.instant.shutdown.description=Hides all windows immediately after a user invoked Exit action
ide.popup.navigation.via.actions=true