release/0.4.1 #3
@ -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);
|
||||||
|
|||||||
@ -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;
|
||||||
|
|
||||||
|
|||||||
@ -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">
|
||||||
|
|||||||
@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user