(WindowEvent e)
| 153 | if (OSUtils.isMacOS() && VersionComparator.greaterThanOrEqual(OSUtils.version(), "10.12")) { |
| 154 | editor.addWindowListener(new WindowAdapter() { |
| 155 | public void windowActivated(WindowEvent e) { |
| 156 | if (touchBar == null) { |
| 157 | buildTouchBar(); |
| 158 | |
| 159 | touchBar.show(editor); |
| 160 | } |
| 161 | } |
| 162 | }); |
| 163 | } |
| 164 |
nothing calls this directly
no test coverage detected