Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

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 ...@@ -169,6 +169,8 @@ Public Class F_Graph
Dim i As Integer Dim i As Integer
Dim img As Image Dim img As Image
If Me.WindowState = FormWindowState.Minimized Then Exit Sub
If Me.ListView1.CheckedItems.Count = 0 Then If Me.ListView1.CheckedItems.Count = 0 Then
Me.PictureBox1.Image = Nothing Me.PictureBox1.Image = Nothing
Exit Sub Exit Sub
......
...@@ -477,7 +477,7 @@ Public Class cGBX ...@@ -477,7 +477,7 @@ Public Class cGBX
End If End If
'Reduce step size if nu-range is too low '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 nuStep *= 0.1
Loop Loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment