Skip to content

Commit

Permalink
[Feature] e.g. a folder "wwwwww" is cut off with "wwwww ..." but it s…
Browse files Browse the repository at this point in the history
…hould be shown in its entirety (#201), version 1.0.19.5
  • Loading branch information
Hofknecht committed Oct 4, 2021
1 parent 8d56909 commit 0e7c59a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.19.4")]
[assembly: AssemblyFileVersion("1.0.19.4")]
[assembly: AssemblyVersion("1.0.19.5")]
[assembly: AssemblyFileVersion("1.0.19.5")]
2 changes: 1 addition & 1 deletion Utilities/DataGridViewExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ internal static void FastAutoSizeColumns(this DataGridView dgv)
foreach (DataGridViewRow row in rows)
{
float checkWidth = gfx.MeasureString(
row.Cells[i].Value.ToString() + "_",
row.Cells[i].Value.ToString() + "__",
dgv.RowTemplate.DefaultCellStyle.Font)
.Width;
if (checkWidth > widthMax)
Expand Down

0 comments on commit 0e7c59a

Please sign in to comment.