Changed to upgrade nuget packages

Changed for small bug fixes
This commit is contained in:
Ray 2026-05-10 13:03:52 +01:00
parent 9a2cfa703f
commit 9c0b187df6
4 changed files with 8 additions and 5 deletions

View File

@ -73,7 +73,7 @@ namespace RokettoLaunch
}
else
{
await _fileSessionManager.NewSession();
//await _fileSessionManager.NewSession();
}
UIControl.SetFocus(this);
@ -90,6 +90,8 @@ namespace RokettoLaunch
if (this.CurrentSession.HideOnClose && !_requestExit)
{
this.Hide();
e.Cancel = true;
return;
}
@ -1063,6 +1065,7 @@ namespace RokettoLaunch
var header = CreateHeader(groupInfo);
header.ToggleControlId = groupInfo.Id;
header.ToggleControl = tableLayout;
header.IsOpen = groupInfo.IsOpen;
UIControl.Add(flowLayoutPanel1, header);
UIControl.Add(flowLayoutPanel1, tableLayout);

View File

@ -6,7 +6,7 @@ namespace RokettoLaunch.Models.SaveFile
{
public int FileVersion { get; set; } = 0;
public int TilesPerRow { get; set; } = 8;
public int TilesPerRow { get; set; } = 6;
public bool ShowBigIcons { get; set; } = true;

View File

@ -80,8 +80,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageReference Include="RyzStudio" Version="10.1.0.127" />
<PackageReference Include="RyzStudio.Windows.Forms" Version="10.1.0.127" />
<PackageReference Include="RyzStudio" Version="10.1.0.128" />
<PackageReference Include="RyzStudio.Windows.Forms" Version="10.1.0.140" />
</ItemGroup>
<ItemGroup>
<Compile Update="AppResource.Designer.cs">

View File

@ -68,7 +68,7 @@ namespace RokettoLaunch.Windows.Forms
{
base.OnMouseDown(e);
if (e.Button == MouseButtons.Right)
if (Control.ModifierKeys == Keys.Control && e.Button == MouseButtons.Right)
{
this.DoDragDrop(this, DragDropEffects.Move);
}