We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The parser for themes does not handle comments properly. It parses commented-out directives as if they were not commented out.
To Reproduce
Using something like the following will set the color to #7323c3, even if the line starts with a '#'.
#7323c3
theme[cpu_start]="#af5fff" # theme[cpu_start]="#7323c3"
Expected behavior
The color should have been #af5fff.
#af5fff
Cause
This block does not handle comments at all
btop/src/btop_theme.cpp
Lines 383 to 401 in dd4ada7
The text was updated successfully, but these errors were encountered:
aristocratos
Successfully merging a pull request may close this issue.
The parser for themes does not handle comments properly. It parses commented-out directives as if they were not commented out.
To Reproduce
Using something like the following will set the color to
#7323c3
, even if the line starts with a '#'.Expected behavior
The color should have been
#af5fff
.Cause
This block does not handle comments at all
btop/src/btop_theme.cpp
Lines 383 to 401 in dd4ada7
The text was updated successfully, but these errors were encountered: