Fixed Issue 162.
authormoel.mich
Mon, 07 Feb 2011 22:06:58 +0000
changeset 2530044b05a3094
parent 252 e62afa69214f
child 254 d8079800a888
Fixed Issue 162.
GUI/MainForm.cs
Program.cs
     1.1 --- a/GUI/MainForm.cs	Sun Jan 30 23:45:26 2011 +0000
     1.2 +++ b/GUI/MainForm.cs	Mon Feb 07 22:06:58 2011 +0000
     1.3 @@ -91,7 +91,7 @@
     1.4        this.Font = SystemFonts.MessageBoxFont;
     1.5        treeView.Font = SystemFonts.MessageBoxFont;
     1.6        plotPanel.Font = SystemFonts.MessageBoxFont;
     1.7 -      treeView.RowHeight = treeView.Font.Height;      
     1.8 +      treeView.RowHeight = treeView.Font.Height + 1;      
     1.9        
    1.10        nodeCheckBox.IsVisibleValueNeeded += nodeCheckBox_IsVisibleValueNeeded;
    1.11        nodeCheckBox.CheckStateChanged += UpdatePlotSelection;
     2.1 --- a/Program.cs	Sun Jan 30 23:45:26 2011 +0000
     2.2 +++ b/Program.cs	Mon Feb 07 22:06:58 2011 +0000
     2.3 @@ -76,7 +76,7 @@
     2.4  
     2.5        if (!File.Exists(path + fileName)) {
     2.6          MessageBox.Show("The following file could not be found: " + fileName + 
     2.7 -          "\nPlease extract all files from the zip archive.", "Error",
     2.8 +          "\nPlease extract all files from the archive.", "Error",
     2.9             MessageBoxButtons.OK, MessageBoxIcon.Error);
    2.10          return false;
    2.11        }
    2.12 @@ -86,7 +86,8 @@
    2.13      private static bool AllRequiredFilesAvailable() {
    2.14        if (!IsFileAvailable("Aga.Controls.dll"))
    2.15          return false;
    2.16 -
    2.17 +      if (!IsFileAvailable("OpenHardwareMonitorLib.dll"))
    2.18 +        return false;
    2.19        return true;
    2.20      }
    2.21