It is essential to indent code correctly for readability...
Every time I paste to the correct position below an indented code line it ends up one tab stop further left than the correctly indented line above.
B4X:
Select Value 'Before I paste PopulateList()
Case MenuOption(0)
Query = "SELECT * FROM Countries ORDER BY Country"
Case MenuOption(1)
B4X:
Select Value 'After I paste PopulateList()
Case MenuOption(0)
Query = "SELECT * FROM Countries ORDER BY Country"
PopulateList(Query,"Country","CapitalCity") '<<Too far left
Case MenuOption(1)
Can this be fixed with an IDE setting or is something else wrong?