diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 829b141..d06a0c6 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // 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.3.1.6")] -[assembly: AssemblyFileVersion("1.3.1.6")] +[assembly: AssemblyVersion("1.3.1.7")] +[assembly: AssemblyFileVersion("1.3.1.7")] diff --git a/README.md b/README.md index 6fdd1fc..064471a 100644 --- a/README.md +++ b/README.md @@ -288,7 +288,8 @@ Thanks for ideas, reporting issues and contributing! #387 #411 #444 [yrctw](https://github.com/yrctw), #446 [timinformatica](https://github.com/timinformatica), #450 [ppt-oldoerp](https://github.com/ppt-oldoerp), -#453 [fubaWoW](https://github.com/fubaWoW) +#453 [fubaWoW](https://github.com/fubaWoW), +#454 [WouterVanGoey](https://github.com/WouterVanGoey) Donations ------------------ diff --git a/UserInterface/AppContextMenu.cs b/UserInterface/AppContextMenu.cs index 9fd693e..56daea2 100644 --- a/UserInterface/AppContextMenu.cs +++ b/UserInterface/AppContextMenu.cs @@ -92,7 +92,7 @@ namespace SystemTrayMenu.Helper aboutBox.AppMoreInfo += "#225 #297 #299 #317 #321 #324 #330 #386 #390 #401 #402 #407 #409 #414 #416 #418 #428 #430 #443 chip33, "; aboutBox.AppMoreInfo += "#298 phanirithvij, #306 wini2, #370 dna5589, #372 not-nef, #376 Michelle H., "; aboutBox.AppMoreInfo += "#377 SoenkeHob, #380 #394 TransLucida, #384 #434 #435 boydfields, #386 visusys, #387 #411 #444 yrctw" + Environment.NewLine; - aboutBox.AppMoreInfo += "#446 timinformatica, #450 ppt-oldoerp, #453 fubaWoW" + Environment.NewLine; + aboutBox.AppMoreInfo += "#446 timinformatica, #450 ppt-oldoerp, #453 fubaWoW, #454 WouterVanGoey" + Environment.NewLine; aboutBox.AppMoreInfo += @" Sponsors - Thank you! ------------------ diff --git a/UserInterface/Menu.cs b/UserInterface/Menu.cs index 6a87bc4..b02bab3 100644 --- a/UserInterface/Menu.cs +++ b/UserInterface/Menu.cs @@ -758,7 +758,7 @@ namespace SystemTrayMenu.UserInterface int dgvHeightMaxByOptions = (int)(Scaling.Factor * Scaling.FactorByDpi * 450f * (Properties.Settings.Default.HeightMaxInPercent / 100f)); int dgvHeightMax = Math.Min(dgvHeightMaxByScreen, dgvHeightMaxByOptions); - if (!dgvHeightSet) + if (!dgvHeightSet && dgvHeightByItems > 0 && dgvHeightMax > 0) { dgv.Height = Math.Min(dgvHeightByItems, dgvHeightMax); dgvHeightSet = true;