Skip to content

Commit 5cca9e1

Browse files
committed
[Fix] Disable fade animation based on system configuration
1 parent 3a67764 commit 5cca9e1

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Panels/Startup/SplashScreen.vb

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
Imports System.Drawing.Drawing2D
2+
Imports Microsoft.Win32
3+
24
Public Class SplashScreen
35

46
Dim opacityFade As Single
57

68
Private Sub SplashScreen_Load(sender As Object, e As EventArgs) Handles MyBase.Load
79
If MainForm.dtBranch.Contains("preview") Then PreviewFlag.Visible = True
8-
Timer1.Enabled = True
10+
Try
11+
Dim wmReg As RegistryKey = Registry.CurrentUser.OpenSubKey("Control Panel\Desktop\WindowMetrics")
12+
If wmReg.GetValue("MinAnimate") = 1 Then
13+
Timer1.Enabled = True
14+
Else
15+
Opacity = 1
16+
End If
17+
wmReg.Close()
18+
Catch ex As Exception
19+
Opacity = 1
20+
End Try
921
Refresh()
1022
End Sub
1123

0 commit comments

Comments
 (0)