Removed showSendButton setting

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-02-12 15:42:59 +01:00
parent 35c0cb99d0
commit ba2c68819f
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
3 changed files with 0 additions and 16 deletions

View File

@ -279,7 +279,6 @@ export default class MessageComposer extends React.Component {
tombstone: this._getRoomTombstone(),
canSendMessages: this.props.room.maySendMessage(),
showCallButtons: SettingsStore.getValue("showCallButtonsInComposer"),
showSendButton: SettingsStore.getValue("MessageComposerInput.showSendButton"),
hasConference: WidgetStore.instance.doesRoomHaveConference(this.props.room),
joinedConference: WidgetStore.instance.isJoinedToConferenceIn(this.props.room),
isComposerEmpty: true,
@ -298,12 +297,6 @@ export default class MessageComposer extends React.Component {
}
};
onShowSendButtonChanged = () => {
this.setState({
showSendButton: SettingsStore.getValue("MessageComposerInput.showSendButton"),
});
}
_onWidgetUpdate = () => {
this.setState({hasConference: WidgetStore.instance.doesRoomHaveConference(this.props.room)});
};
@ -316,8 +309,6 @@ export default class MessageComposer extends React.Component {
this.dispatcherRef = dis.register(this.onAction);
MatrixClientPeg.get().on("RoomState.events", this._onRoomStateEvents);
this._waitForOwnMember();
this.showSendButtonRef = SettingsStore.watchSetting(
"MessageComposerInput.showSendButton", null, this.onShowSendButtonChanged);
}
_waitForOwnMember() {
@ -343,7 +334,6 @@ export default class MessageComposer extends React.Component {
WidgetStore.instance.removeListener(UPDATE_EVENT, this._onWidgetUpdate);
ActiveWidgetStore.removeListener('update', this._onActiveWidgetUpdate);
dis.unregister(this.dispatcherRef);
SettingsStore.unwatchSetting(this.showSendButtonRef);
}
_onRoomStateEvents(ev, state) {

View File

@ -34,7 +34,6 @@ export default class PreferencesUserSettingsTab extends React.Component {
'MessageComposerInput.suggestEmoji',
'sendTypingNotifications',
'MessageComposerInput.ctrlEnterToSend',
`MessageComposerInput.showSendButton`,
];
static TIMELINE_SETTINGS = [

View File

@ -336,11 +336,6 @@ export const SETTINGS: {[setting: string]: ISetting} = {
displayName: isMac ? _td("Use Command + Enter to send a message") : _td("Use Ctrl + Enter to send a message"),
default: false,
},
"MessageComposerInput.showSendButton": {
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
displayName: _td("Show send message button"),
default: false,
},
"MessageComposerInput.autoReplaceEmoji": {
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
displayName: _td('Automatically replace plain text Emoji'),