https://bugs.documentfoundation.org/show_bug.cgi?id=160278
Mike Kaganski <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever confirmed|0 |1 --- Comment #7 from Mike Kaganski <[email protected]> --- Repro - thank you! This Basic code shows this from scratch: sub testSurrogates doc = StarDesktop.LoadComponentFromUrl("private:factory/swriter", "_blank", 0, array()) doc.text.setString("123") cursor = doc.text.createTextCursor() cursor.gotoEnd(false) cursor.goLeft(1, true) cursor.setString("𝜇") cursor.setString("test") end sub Before step 'cursor.setString("𝜇")', the document has text "123". After step 'cursor.setString("𝜇")', the document has text "12𝜇", as expected. After step 'cursor.setString("test")', the document has text "1test", instead of expected text "12test". -- You are receiving this mail because: You are the assignee for the bug.
