Skip to content

Commit

Permalink
Merge pull request #29 from theohbrothers/fix/fix-undefined-hashtable…
Browse files Browse the repository at this point in the history
…-key-causing-width-of-0

Fix: Fix undefined hashtable key causing width of 0
  • Loading branch information
leojonathanoh committed May 28, 2021
2 parents ea3cd6a + 82666b6 commit d1f384c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function Position-ExplorerWindow {
# Try and reposition and resize Window
Write-Host "`tRepositioning and Resizing window..." -ForegroundColor Green

$success = Position-ResizeWindow -ProcessId $childPid -Left $windowPosition['left'] -Top $windowPosition['top'] -Width $windowPosition['widtn'] -Height $windowPosition['height'] -DebugLevel $DebugLevel
$success = Position-ResizeWindow -ProcessId $childPid -Left $windowPosition['left'] -Top $windowPosition['top'] -Width $windowPosition['width'] -Height $windowPosition['height'] -DebugLevel $DebugLevel
if ($success) {
Write-Host "`tSuccessfully repositioned and resized window." -ForegroundColor Green

Expand Down

0 comments on commit d1f384c

Please sign in to comment.