mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
[diff] IJPL-176616 Fix getChildren(null)
(cherry picked from commit 5798da34840b42696d1c4283b26b3c666935e6a9) IJ-MR-156852 GitOrigin-RevId: 37f17077f58574fa59bb2664a6b2f89df0c17ab9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
2342dbb3ff
commit
fea293a373
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user