flutter-idea/src/io/flutter/editor/IntellijColorPickerProvider.java [41:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      .addColorValuePanel().withFocus()
      .addOperationPanel(
        (okColor) -> {
          onOk.run();
          return Unit.INSTANCE;
        },
        (cancelColor) -> {
          onCancel.run();
          return Unit.INSTANCE;
        }
      ).withFocus()
      .setFocusCycleRoot(true)
      .focusWhenDisplay(true)
      .addKeyAction(
        KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0),
        new AbstractAction() {
          @Override
          public void actionPerformed(ActionEvent e) {
            onCancel.run();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-studio/src/io/flutter/editor/AndroidStudioColorPickerProvider.java [43:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      .addColorValuePanel().withFocus()
      .addOperationPanel(
        (okColor) -> {
          onOk.run();
          return Unit.INSTANCE;
        },
        (cancelColor) -> {
          onCancel.run();
          return Unit.INSTANCE;
        }
      ).withFocus()
      .setFocusCycleRoot(true)
      .focusWhenDisplay(true)
      .addKeyAction(
        KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0),
        new AbstractAction() {
          @Override
          public void actionPerformed(ActionEvent e) {
            onCancel.run();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



