Fixed Editor formatting not being preserved on copy and paste

Paul B

XenForo moderator
Staff member
This can be reproduced every time using Chrome and Win 7

The following image explains the issue:
formatting.webp

The final row of text has been copied from the second row but the bold formatting is not preserved.
 
As stated above, I have the same problem with Chrome in Win7. I'm unable to reproduce it using Firefox 21 on Win7, though.
 
Tabs are not kept also.
Code:
# Continue to process the script or not
check_go()
{
    local go

    echo -n "Continue? (y/n) "
    read go
    case $go in
        n|N|no|No|NO)
            exit 1
            ;;
        *)
    esac
}
I see that the tabs are transformed into 4 spaces, is this the normal behaviour?
 
Fix to be rolled out soon. We do a lot of copy/paste manipulation to make things work better. Here's a situation where it probably took out too much.
 
Top Bottom