Skip to content

Commit

Permalink
undo off-screen recording as it interferes with keyboard access on Li…
Browse files Browse the repository at this point in the history
…nux/macOS (#212)
  • Loading branch information
ahus1 committed Mar 29, 2023
1 parent 4c2e72f commit c3a1c9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

## Unreleased

### Added

### Fixed
- undo off-screen recording as it interferes with keyboard access on Linux/macOS (#212)

## 0.2.1 - 2023-02-25

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ class LoadableJCEFHtmlPanel(
val component: JComponent get() = this.multiPanel

private fun isOffScreenRenderingEnabled(): Boolean {
return Registry.`is`("ide.browser.jcef.diagramsNet.osr.enabled", true)
// Off-screen rendering prevents keyboard access to the editor (i.e. can't type in text fields),
// therefore disabling it.
return Registry.`is`("ide.browser.jcef.diagramsNet.osr.enabled", false)
}

}

0 comments on commit c3a1c9c

Please sign in to comment.