Skip to content

Commit 5a50861

Browse files
authored
Adjust button location
1 parent e425606 commit 5a50861

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ServiceManagerPlus.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ $exportDrivers.Add_Click({
863863
$stopService = New-Object System.Windows.Forms.Button
864864
$stopService.Text = 'Stop Service'
865865
$stopService.Size = New-Object System.Drawing.Size(90, 30)
866-
$stopService.Location = New-Object System.Drawing.Point(900, 2)
866+
$stopService.Location = New-Object System.Drawing.Point(860, 2)
867867
$stopService.ForeColor = 'White'
868868
$stopService.Add_Click({
869869
Stop-SelectedService
@@ -880,7 +880,7 @@ $form.Controls.Add($stopService)
880880
$startService = New-Object System.Windows.Forms.Button
881881
$startService.Text = 'Start Service'
882882
$startService.Size = New-Object System.Drawing.Size(90, 30)
883-
$startService.Location = New-Object System.Drawing.Point(990, 2)
883+
$startService.Location = New-Object System.Drawing.Point(950, 2)
884884
$startService.ForeColor = 'White'
885885
$startService.Add_Click({
886886
Start-SelectedService

0 commit comments

Comments
 (0)