[diff] IJPL-176616 Fix getChildren(null)

(cherry picked from commit 5798da34840b42696d1c4283b26b3c666935e6a9)

IJ-MR-156852

GitOrigin-RevId: 37f17077f58574fa59bb2664a6b2f89df0c17ab9
This commit is contained in:
Ilia.Shulgin
2025-03-05 12:23:06 +01:00
committed by intellij-monorepo-bot
parent 2342dbb3ff
commit fea293a373

View File

@@ -157,7 +157,7 @@ internal class CombinedEditorSettingsActionGroup(private val settings: TextDiffS
}
val isRightToolbarPlace = e != null && e.place.endsWith(ActionPlaces.DIFF_RIGHT_TOOLBAR)
val isGutterPlace = !isRightToolbarPlace
val isGutterPlace = e != null && !isRightToolbarPlace
val actions = mutableListOf<AnAction>()
if (isRightToolbarPlace) {