[R] CR-136829changed shouldShowRunButtonInGutter to false in NewUINotebookDiffEditorAppearance

GitOrigin-RevId: 9ae5aa12d265dd2b7746fe0c16a28501b43939c2
This commit is contained in:
Bogdan.Kirilenko
2024-06-16 13:49:39 +02:00
committed by intellij-monorepo-bot
parent 3ad92a07f7
commit fcdbd3fa8d

View File

@@ -21,7 +21,7 @@ object NewUINotebookDiffEditorAppearance: NotebookEditorAppearance,
override fun shouldShowCellLineNumbers(): Boolean = false
override fun shouldShowExecutionCounts(): Boolean = false // not needed for DIFF -> execution does not reach it
override fun shouldShowOutExecutionCounts(): Boolean = false
override fun shouldShowRunButtonInGutter(): Boolean = true
override fun shouldShowRunButtonInGutter(): Boolean = false
override fun getCellStripeHoverColor(editor: Editor): Color {
return editor.colorsScheme.getColor(NotebookEditorAppearance.CELL_UNDER_CURSOR_STRIPE_HOVER_COLOR) ?: JBColor.BLUE
}