Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit e33c03e5 authored by Raphael LUZ's avatar Raphael LUZ
Browse files

* Bugfix: Error in TC Iteration caused crash

* Bugfix: Minimizing Graph window caused crash
parent 2507cc98
No related branches found
No related tags found
No related merge requests found
......@@ -169,6 +169,8 @@ Public Class F_Graph
Dim i As Integer
Dim img As Image
If Me.WindowState = FormWindowState.Minimized Then Exit Sub
If Me.ListView1.CheckedItems.Count = 0 Then
Me.PictureBox1.Image = Nothing
Exit Sub
......
......@@ -477,7 +477,7 @@ Public Class cGBX
End If
'Reduce step size if nu-range is too low
Do While (nuMax - nuMin) / nuStep < 10
Do While (nuMax - nuMin) / nuStep < 10 And nuStep > 0.00001
nuStep *= 0.1
Loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment