Author Topic: Tab formatting for action list items  (Read 2069 times)

Exergist

  • Global Moderator
  • Sr. Member
  • *****
  • Posts: 405
  • Ride the lightning
Tab formatting for action list items
« on: June 22, 2018, 11:47:19 AM »
Would it be possible to add the ability to manually change the indentation of items in the action list? One possible use would be to improve readability.

So for instance you could turn this:
Code: [Select]
// Specify whether or not to output the current pronunciation for the text of interest
Set Boolean [~~OutputCurrentPronunciation] to True
// Check if user wants to output the existing pronunciation for the text of interest
Begin Boolean Compare : [~~OutputCurrentPronunciation] Equals True
Execute command, 'Output Current Pronunciation of Text' (and wait until it completes)
End Condition

...into this:
Code: [Select]
// Specify whether or not to output the current pronunciation for the text of interest
Set Boolean [~~OutputCurrentPronunciation] to True
// Check if user wants to output the existing pronunciation for the text of interest
Begin Boolean Compare : [~~OutputCurrentPronunciation] Equals True
Execute command, 'Output Current Pronunciation of Text' (and wait until it completes)
End Condition

...which helps retain focus on the line item that the user may need to manually change ('Set Boolean [~~OutputCurrentPronunciation] to True').