Skip to content

Commit

Permalink
Hotfix for oversight when editing messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ijre committed Mar 31, 2020
1 parent 530e544 commit 00fe8b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/GUI/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ private async Task SendMessage()

private void Input_Chat_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyData == Keys.Return)
if (e.KeyData == Keys.Return && Send_Button.Text == "Send")
SendMessage();
}

Expand Down
4 changes: 2 additions & 2 deletions src/GUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyVersion("4.1.0.1")]
[assembly: AssemblyFileVersion("4.1.0.1")]
[assembly: NeutralResourcesLanguage("en-US")]

0 comments on commit 00fe8b6

Please sign in to comment.