Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Fixed 置顶时透明度问题
Browse files Browse the repository at this point in the history
  • Loading branch information
tylearymf committed Aug 19, 2020
1 parent cb41be6 commit ce468e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[assembly: System.Runtime.InteropServices.ComVisible(false)]
[assembly: System.Runtime.InteropServices.Guid("4483e561-8b3e-427d-98a4-e0e821b7bf2f")]
[assembly: System.Reflection.AssemblyConfiguration("")]
[assembly: System.Reflection.AssemblyFileVersion("2.5.8")]
[assembly: System.Reflection.AssemblyFileVersion("2.5.9")]
[assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)]
[assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)]

2 changes: 1 addition & 1 deletion SETUNA/Main/Option/OptionForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ private void InitializeComponent()
this.linkLabel1.Size = new System.Drawing.Size(131, 12);
this.linkLabel1.TabIndex = 0;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "优化版本 by tylearymf";
this.linkLabel1.Text = string.Format("优化版本 by tylearymf. version: {0}", ProductVersion);
this.toolTip1.SetToolTip(this.linkLabel1, "https://github.com/tylearymf/SETUNA2");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
Expand Down
2 changes: 1 addition & 1 deletion SETUNA/Main/ScrapBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private void DragStart(Point pt)
{
this._dragmode = true;
this._dragpoint = pt;
this._saveopacity = this.Opacity;
this._saveopacity = this.ActiveOpacity;
base.SuspendLayout();
this.Opacity = 0.5;
base.ResumeLayout();
Expand Down

0 comments on commit ce468e4

Please sign in to comment.