Skip to content

Commit 3b89446

Browse files
Add files via upload
1 parent f7ae1c3 commit 3b89446

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

functions/functions.psm1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2076,39 +2076,39 @@ function ConvertFrom-WinFormsXML {
20762076
$n = $attrib.Value.split($listsep)
20772077
$n[0] = [math]::round(($n[0]/1) * $ctscale)
20782078
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2079-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2079+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
20802080
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
20812081
}
20822082
}
20832083
if ($attribName -eq 'Location'){
20842084
$n = $attrib.Value.split($listsep)
20852085
$n[0] = [math]::round(($n[0]/1) * $ctscale)
20862086
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2087-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2087+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
20882088
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
20892089
}
20902090
}
20912091
if ($attribName -eq 'MaximumSize'){
20922092
$n = $attrib.Value.split($listsep)
20932093
$n[0] = [math]::round(($n[0]/1) * $ctscale)
20942094
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2095-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2095+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
20962096
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
20972097
}
20982098
}
20992099
if ($attribName -eq 'MinimumSize'){
21002100
$n = $attrib.Value.split($listsep)
21012101
$n[0] = [math]::round(($n[0]/1) * $ctscale)
21022102
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2103-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2103+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
21042104
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
21052105
}
21062106
}
21072107
if ($attribName -eq 'ImageScalingSize'){
21082108
$n = $attrib.Value.split($listsep)
21092109
$n[0] = [math]::round(($n[0]/1) * $ctscale)
21102110
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2111-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2111+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
21122112
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
21132113
}
21142114
}
@@ -2117,7 +2117,7 @@ function ConvertFrom-WinFormsXML {
21172117
$n = $attrib.Value.split($listsep)
21182118
$n[0] = [math]::round(($n[0]/1) * $ctscale)
21192119
$n[1] = [math]::round(($n[1]/1) * $ctscale)
2120-
if ("$($n[0]),$($n[1])" -ne $listsep) {
2120+
if ("$($n[0])$($listsep)$($n[1])" -ne $listsep) {
21212121
$attrib.Value = "$($n[0])$($listsep)$($n[1])"
21222122
}
21232123
}
@@ -4369,7 +4369,7 @@ function Get-PowerShellDesignerVersion {
43694369
.EXAMPLE
43704370
$PSDVersion = Get-PowerShellDesignerVersion
43714371
#>
4372-
return '2.7.1'
4372+
return '2.7.2'
43734373
}
43744374

43754375
function Get-PowerShellVersion {

0 commit comments

Comments
 (0)