release/0.4.1 #3

Merged
Ray merged 7 commits from release/0.4.1 into master 2026-05-10 12:38:44 +00:00
4 changed files with 8 additions and 5 deletions
Showing only changes of commit 9c0b187df6 - Show all commits

View File

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

View File

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

View File

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

View File

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