6.0.2.0
This commit is contained in:
@@ -1,4 +1,9 @@
|
|||||||
|
|
||||||
|
# 6.0.2.0 (2022-07-02)
|
||||||
|
|
||||||
|
- Fix main window shown collapsed when the player was started with full screen.
|
||||||
|
|
||||||
|
|
||||||
# 6.0.1.0 (2022-06-30)
|
# 6.0.1.0 (2022-06-30)
|
||||||
|
|
||||||
- New tutorial: [Extending mpv and mpv.net via Lua scripting](https://github.com/stax76/mpv.net/wiki/Extending-mpv-and-mpv.net-via-Lua-scripting)
|
- New tutorial: [Extending mpv and mpv.net via Lua scripting](https://github.com/stax76/mpv.net/wiki/Extending-mpv-and-mpv.net-via-Lua-scripting)
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("6.0.1.0")]
|
[assembly: AssemblyVersion("6.0.2.0")]
|
||||||
[assembly: AssemblyFileVersion("6.0.1.0")]
|
[assembly: AssemblyFileVersion("6.0.2.0")]
|
||||||
|
|||||||
2
src/WinForms/MainForm.Designer.cs
generated
2
src/WinForms/MainForm.Designer.cs
generated
@@ -50,7 +50,7 @@
|
|||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(288F, 288F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(288F, 288F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||||
this.BackColor = System.Drawing.Color.Black;
|
this.BackColor = System.Drawing.Color.Black;
|
||||||
this.ClientSize = new System.Drawing.Size(348, 0);
|
this.ClientSize = new System.Drawing.Size(857, 444);
|
||||||
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||||
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
|
||||||
|
|||||||
@@ -620,7 +620,12 @@ namespace mpvnet
|
|||||||
if (WasMaximized)
|
if (WasMaximized)
|
||||||
WindowState = FormWindowState.Maximized;
|
WindowState = FormWindowState.Maximized;
|
||||||
else
|
else
|
||||||
|
{
|
||||||
WindowState = FormWindowState.Normal;
|
WindowState = FormWindowState.Normal;
|
||||||
|
|
||||||
|
if (!Core.WasInitialSizeSet)
|
||||||
|
SetFormPosAndSize();
|
||||||
|
}
|
||||||
|
|
||||||
if (Core.Border)
|
if (Core.Border)
|
||||||
FormBorderStyle = FormBorderStyle.Sizable;
|
FormBorderStyle = FormBorderStyle.Sizable;
|
||||||
|
|||||||
Reference in New Issue
Block a user