Bug? Block-Commenting removes comments.

jmon

Well-Known Member
Licensed User
Longtime User
Hi,

In B4J v3, when I block comment with CTRL+Q or CTRL+', my comments are un-commented.
i.e:
B4X:
sub example
    'comment
    for i = 1 to 10
        'something
    next
end sub

becomes this when I press CTRL+Q:
B4X:
sub example
    comment
    for i = 1 to 10
        something
    next
end sub

instead of
B4X:
sub example
'    'comment
'    for i = 1 to 10
'        'something
'    next
end sub

Do you have this problem?

Thanks.
jmon
 
Last edited:
Top