ソースを参照

Add support for submitting media description with ctrl+enter (#12272)

master^2
ThibG 4年前
committed by Eugen Rochko
コミット
7488a9e154
1個のファイルの変更10行の追加0行の削除
  1. +10
    -0
      app/javascript/mastodon/features/ui/components/focal_point_modal.js

+ 10
- 0
app/javascript/mastodon/features/ui/components/focal_point_modal.js ファイルの表示

@@ -184,6 +184,15 @@ class FocalPointModal extends ImmutablePureComponent {
this.setState({ description: e.target.value, dirty: true });
}

handleKeyDown = (e) => {
if (e.keyCode === 13 && (e.ctrlKey || e.metaKey)) {
e.preventDefault();
e.stopPropagation();
this.setState({ description: e.target.value, dirty: true });
this.handleSubmit();
}
}

handleSubmit = () => {
this.props.onSave(this.state.description, this.state.focusX, this.state.focusY);
this.props.onClose();
@@ -254,6 +263,7 @@ class FocalPointModal extends ImmutablePureComponent {
className='setting-text light'
value={detecting ? '…' : description}
onChange={this.handleChange}
onKeyDown={this.handleKeyDown}
disabled={detecting}
autoFocus
/>


読み込み中…
キャンセル
保存