Skip to content

Texteditor.mods.fixes: text missalignment bugfix and enable quote wrapping pressing Alt key

Bruce Steers requested to merge (removed):texteditor.mods.fixes into master

added $hView.Scroll(0, 0) to TextEditor.class Init() function to stop the text misalignment error when loading a form with preloaded text and ShowLinenumbers is enabled. (See BugTracker 1911)

Changed a line in the OnKeyPress() funtion in TextEditor_Sh.class and TextEditor_Gambas.class ...
For Each sBraces In ["()", "{}", "[]"]
To...
For Each sBraces In ["()", "{}", "[]", """, "'", "`"]

This allows text wrapping for quotes but only when pressing Alt Key. I changed it for gambas too as i would like to have the option in the gambas IDE. Bruce

Merge request reports