Hi,

If you look at method private void NormalizePercentStyle(bool normalizeRow);
from type "System.Windows.Forms.Design.StyleCollectionEditor+StyleEditorForm, System.Design" with C# language selected you will see the following piece of code:
float num2 = 0f;
    [...]
    switch (num2)
    {
        case 100f:
        case 0f:
            return;
    }

throws a compilation error since float values are not valid for switch statements.

I check previous version an the problem is also present.
nmgomes
0

Comments

1 comment

  • Clive Tong
    Thanks for reporting this. I've logged it as issue RP-1038.
    Clive Tong
    0

Add comment

Please sign in to leave a comment.