mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
IDEA-305434 Do not show intention bulb in inlay Run-To-Cursor toolbar if it is switched off in settings
GitOrigin-RevId: e36542dba4807925787abb679dcd0dc93613ef2b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c0aab1676b
commit
75069bb066
@@ -600,7 +600,7 @@ public final class XDebuggerManagerImpl extends XDebuggerManager implements Pers
|
||||
}
|
||||
|
||||
int caretLine = editor.getCaretModel().getLogicalPosition().line;
|
||||
if (caretLine == lineNumber && firstNonSpacePos.x >= JBUI.scale(4 + 22*2)) {
|
||||
if (editor.getSettings().isShowIntentionBulb() && caretLine == lineNumber && firstNonSpacePos.x >= JBUI.scale(4 + 22*2)) {
|
||||
group.add(ActionManager.getInstance().getAction(IdeActions.ACTION_SHOW_INTENTION_ACTIONS));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user