Skip to content

Commit

Permalink
fix precision cursor changing when shouldn't
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetTechuila committed Feb 14, 2023
1 parent dcd31ea commit 2a00d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Listener.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Import-Module -Name $PSScriptRoot\Functions.ps1
#region Variables
$cursorSize = Get-Content -Path $PSScriptRoot\Resources\Preferences -First 1
$useClassicWheel = Get-Content -Path $PSScriptRoot\Resources\Preferences -First 2 | Select-Object -Skip 1
$useAlternatePrecision = Get-Content -Path $PSScriptRoot\Resources\Preferences -Last 1
$useAlternatePrecision = [System.Convert]::ToBoolean( $(Get-Content -Path $PSScriptRoot\Resources\Preferences -Last 1) )
$byteDiffFolder = "$PSScriptRoot\Resources\Byte Diff\$cursorSize"
$customCursorFolder = "$PSScriptRoot\Resources\Custom Cursor"
$lastTheme = Get-WindowsTheme
Expand Down

0 comments on commit 2a00d55

Please sign in to comment.