- June 25, 2015
- 596
- 302
- Home Country
-
United Kingdom
Sometime ago I reported a bug in the Configuration application where a lookup displayed as follows:
This occured for me when using the IMDB script to lookup a movie.
I suggest the fix for this is as follows:
public void SetLine2(string label)
{
if (!string.IsNullOrEmpty(label))
{
label = label.Replace("\n", "");
this.label2.Text = label;
}
}
in DlgProgress.cs. The script data seems to contain a new line in the text.
With this change the dialog displays as follows:
Hope this helps.
Tony
This occured for me when using the IMDB script to lookup a movie.
I suggest the fix for this is as follows:
public void SetLine2(string label)
{
if (!string.IsNullOrEmpty(label))
{
label = label.Replace("\n", "");
this.label2.Text = label;
}
}
in DlgProgress.cs. The script data seems to contain a new line in the text.
With this change the dialog displays as follows:
Hope this helps.
Tony