Use correct check for isRepl checkbox in scratch panel

This commit is contained in:
Natalia Selezneva
2018-01-09 21:32:09 +03:00
parent 654890fac3
commit 23ef50203e
@@ -70,11 +70,11 @@ class ScratchTopPanel private constructor(val scratchFile: ScratchFile) : JPanel
}
}
fun isRepl() = isReplCheckbox.isEnabled
fun isRepl() = isReplCheckbox.isSelected
@TestOnly
fun setReplMode(isEnabled: Boolean) {
isReplCheckbox.isEnabled = isEnabled
fun setReplMode(isSelected: Boolean) {
isReplCheckbox.isSelected = isSelected
}
private fun createActionsToolbar(): JComponent {