Conversation
There is no need for example themes anymore since there are better themes made by community. (cherry picked from commit db872d1)
|
Hi @Berikai, What is this option called in Bitwig 6? Or is the playhead coloring not supported yet for Bitwig 6? I've only managed to change it by editing the Thanks for your hard work! |
|
Hi @AndrejMitrovic! Unfortunately, this option isn't implemented for Bitwig 6 - to be more accurate, it's not implemented after 5.2 Beta 11. STORYTIME lolThere wasn't any color value regarding "Timeline Playhead" by default, which means it was a hard-coded value in the Bitwig's code. It was a highly requested feature, so that I write a patch class specifically for that value, digging into the bytecode to find the hard-coded location. After, Bitwig happened to change the "Timeline Playhead" which resulted in changing the internal code structure. Then, I realized I'd rather prefer manage what is more sustainable rather than struggling keeping track of hard-coded values individually. For more info, check this release note: https://github.com/Berikai/bitwig-theme-editor/releases/tag/1.4.1 Since, the color patching algorithm is changed in 2.0-development, I might be able to find a way to support it again. Also, thanks for letting me know that Appreciate the comment, have a good one! |
|
Thanks for the great write-up, appreciate it! |
Timeline Playhead, the line that moves when a track is playing, was not customizable with this editor since it was a hard coded color value and this theme editor was only supported obvious colors.
There was a high demand about editing Timeline Playhead color, so here it goes!
This branch introduces the ability to edit the Timeline Playhead color and restructures the codebase to facilitate adding new hardcoded colors in the future. However, due to the way this editor was designed, adding new hardcoded colors requires rewriting individual classes one by one.
A special thanks to @zezic for sharing his knowledge on Bitwig bytecode and how the Timeline Playhead can be found.