Skip to content

Commit

Permalink
mhm.
Browse files Browse the repository at this point in the history
  • Loading branch information
teamcons committed Jun 24, 2024
1 parent e7f7cd2 commit 0366ee9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parts/utils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ Function Clipboard_generate_entries {
$entry.Text = $text.Clipboard.Whitespace
}
else {
$entry.Text = -join("1. ", (ellipsify $clipboard_history))
$entry.Text = -join((ellipsify $clipboard_history)) #"1. ",
}
$menu.MenuItems.Add($entry)
}
Expand All @@ -223,12 +223,12 @@ Function Clipboard_generate_entries {
elseif (($clipboard_history[($i - 1)]).trim(" ").Length -eq 0)
{
$entry = New-Object System.Windows.Forms.MenuItem
$entry.Text = -join($i,". ",$text.Clipboard.Whitespace)
$entry.Text = -join($text.Clipboard.Whitespace) #$i,". ",
$menu.MenuItems.Add($entry)
}
else {
$entry = New-Object System.Windows.Forms.MenuItem
$entry.Text = -join($i,". ",( ellipsify $clipboard_history[($i - 1)] ))
$entry.Text = -join(( ellipsify $clipboard_history[($i - 1)] )) #$i,". ",
$menu.MenuItems.Add($entry)
}

Expand Down

0 comments on commit 0366ee9

Please sign in to comment.