We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 590622a commit 61a98c7Copy full SHA for 61a98c7
SmartSystemMenu/Window.cs
@@ -148,9 +148,14 @@ public Window(IntPtr windowHandle)
148
_defaultLeft = size.Left;
149
_defaultTop = size.Top;
150
_beforeRollupHeight = size.Height;
151
- _defaultTransparency = Transparency;
152
_isLayered = false;
153
_hasThickFrame = false;
+ _defaultTransparency = Transparency;
154
+ if (_defaultTransparency == 100)
155
+ {
156
+ _defaultTransparency = 0;
157
+ }
158
+
159
State = new WindowState();
160
State.Left = size.Left;
161
State.Top = size.Top;
0 commit comments