Fix RoomName Not Getting Set When Joining Room

This commit is contained in:
Alan Moon 2025-12-14 13:47:00 -08:00
parent b80a502fe9
commit 7899e1b091
5 changed files with 19 additions and 16 deletions

View File

@ -278,7 +278,7 @@ namespace qtcnet_client
await _gatewayService.JoinRoomAsync(new() // TODO - refactor this server side (its so bad)
{
Id = _roomCtrl.RoomId,
Name = _roomCtrl.Name,
Name = _roomCtrl.RoomName,
});
}
}

View File

@ -170,6 +170,9 @@
pbProfileImage.SizeMode = PictureBoxSizeMode.Zoom;
pbProfileImage.TabIndex = 3;
pbProfileImage.TabStop = false;
pbProfileImage.MouseClick += pbProfileImage_Click;
pbProfileImage.MouseEnter += pbProfileImage_MouseEnter;
pbProfileImage.MouseLeave += pbProfileImage_MouseLeave;
//
// lblStatus
//

View File

@ -81,7 +81,7 @@ namespace qtcnet_client.Properties {
}
/// <summary>
/// Looks up a localized string similar to 1.0.0.
/// Looks up a localized string similar to 2.0.5.0.
/// </summary>
internal static string AssemblyVersion {
get {

View File

@ -167,7 +167,7 @@
<value>..\Resources\DNDIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="AssemblyVersion" xml:space="preserve">
<value>1.0.0</value>
<value>2.0.5.0</value>
</data>
<data name="Tic-tac-toe" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Tic-tac-toe.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>