View Single Post
Old 04-11-2018, 12:52 AM   #2
Never
Human being with feelings
 
Never's Avatar
 
Join Date: Jul 2016
Location: Ohio, USA
Posts: 633
Default

Quote:
Originally Posted by Publicradio View Post
I know how to remove folder indentation in a theme, using this line:

tcp_folderindent 0

However, automation envelopes, inside nested tracks, still inherit the indentation and try to apply it. How do I also remove the nesting indentation for envelopes?
You need to put the following bit of code (thanks to WT) into the rtconfig
file at the beginning of the tcp panel
layout..each one if your theme is using
a clear tcp.* wild card command...which
alot do. There is a way to tweak this
to make it do other fun stuff too...
see the SDK.

tcp_folderindent 1
set tcp.margin +:folderdepth:1 [-1 0 0 0]
set tcp.margin +:folderdepth:1 [0 0 0 0]
set reverse_margin * [-1] tcp.margin

The folder indent command only sets a number of pixels to be indented. Then
the TCP panel is marginalized (correct word?) accordingly.
What's happening here is folder depth is set to 1 px. Then, WALTER is detecting folder depth
(when and if) and then setting the
TCP panel's margin to a negative value to counteract the one pixel folder
indent; note that the tcp.margin
is being multiplied by -1.

Good God i hate the way this
forum interface formats text.

Never

Last edited by Never; 04-11-2018 at 01:00 AM.
Never is offline   Reply With Quote