fix(collector): move Finish/Cancel into a clean footer (were overlapping Confirm PIN)
This commit is contained in:
@@ -176,13 +176,13 @@ try {
|
||||
$btnCancel = New-Object Windows.Forms.Button
|
||||
$btnCancel.Text = 'Cancel'
|
||||
Style-Button $btnCancel $false
|
||||
$btnCancel.Location = New-Object Drawing.Point(580, ($y + 48))
|
||||
$btnCancel.Location = New-Object Drawing.Point(580, ($y + 120))
|
||||
$form.Controls.Add($btnCancel)
|
||||
|
||||
$btnFinish = New-Object Windows.Forms.Button
|
||||
$btnFinish.Text = 'Finish'
|
||||
Style-Button $btnFinish $true
|
||||
$btnFinish.Location = New-Object Drawing.Point(750, ($y + 48))
|
||||
$btnFinish.Location = New-Object Drawing.Point(750, ($y + 120))
|
||||
$form.Controls.Add($btnFinish)
|
||||
|
||||
# --- behaviour -------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user