# HG changeset patch # User moel.mich # Date 1297116418 0 # Node ID 0044b05a3094243ed077138e522f8a0663ed9b71 # Parent e62afa69214f12213f0c4a74f0afe8cc0096eb50 Fixed Issue 162. diff -r e62afa69214f -r 0044b05a3094 GUI/MainForm.cs --- a/GUI/MainForm.cs Sun Jan 30 23:45:26 2011 +0000 +++ b/GUI/MainForm.cs Mon Feb 07 22:06:58 2011 +0000 @@ -91,7 +91,7 @@ this.Font = SystemFonts.MessageBoxFont; treeView.Font = SystemFonts.MessageBoxFont; plotPanel.Font = SystemFonts.MessageBoxFont; - treeView.RowHeight = treeView.Font.Height; + treeView.RowHeight = treeView.Font.Height + 1; nodeCheckBox.IsVisibleValueNeeded += nodeCheckBox_IsVisibleValueNeeded; nodeCheckBox.CheckStateChanged += UpdatePlotSelection; diff -r e62afa69214f -r 0044b05a3094 Program.cs --- a/Program.cs Sun Jan 30 23:45:26 2011 +0000 +++ b/Program.cs Mon Feb 07 22:06:58 2011 +0000 @@ -76,7 +76,7 @@ if (!File.Exists(path + fileName)) { MessageBox.Show("The following file could not be found: " + fileName + - "\nPlease extract all files from the zip archive.", "Error", + "\nPlease extract all files from the archive.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return false; } @@ -86,7 +86,8 @@ private static bool AllRequiredFilesAvailable() { if (!IsFileAvailable("Aga.Controls.dll")) return false; - + if (!IsFileAvailable("OpenHardwareMonitorLib.dll")) + return false; return true; }