Replies: 2 comments
-
Another context clue for tracing down where we have to change Qt styling -- notice how the videos table, but not the nodes, gets the font color set appropriately for dark mode. |
Beta Was this translation helpful? Give feedback.
-
I ran into this bug on the multiview branch a while back (a5b47) and realized it could also be the cause for the Skeletons table being colored black always. The problem is actually because we return black for the color of the item if there is no track index: Lines 176 to 177 in 91d6c96 and we are coloring by instances: Line 260 in 91d6c96 It seems like the intention here was to color the Skeletons table the same color as the skeleton: Lines 416 to 421 in 91d6c96 I am creating a feature branch and fix right now. Just wanted to update so that no one else goes down a rabbit hole. |
Beta Was this translation helpful? Give feedback.
-
I think we're hardcoding the font colors for the status bar, but we should use a system light/dark mode aware default like the rest of the UI components.
Beta Was this translation helpful? Give feedback.
All reactions