mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
HackStudio: Tweak style of C++ identifiers
On second thought, let's not have bold identifiers, as this ended up making most of the code bold. :^)
This commit is contained in:
parent
dd74cb9c8f
commit
90c81d5c16
Notes:
sideshowbarker
2024-07-19 11:31:52 +09:00
Author: https://github.com/awesomekling
Commit: 90c81d5c16
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ static TextStyle style_for_token_type(CppToken::Type type)
|
||||||
case CppToken::Type::KnownType:
|
case CppToken::Type::KnownType:
|
||||||
return { Color::from_rgb(0x929200), &Font::default_bold_fixed_width_font() };
|
return { Color::from_rgb(0x929200), &Font::default_bold_fixed_width_font() };
|
||||||
case CppToken::Type::Identifier:
|
case CppToken::Type::Identifier:
|
||||||
return { Color::from_rgb(0x000092), &Font::default_bold_fixed_width_font() };
|
return { Color::from_rgb(0x000092) };
|
||||||
case CppToken::Type::DoubleQuotedString:
|
case CppToken::Type::DoubleQuotedString:
|
||||||
case CppToken::Type::SingleQuotedString:
|
case CppToken::Type::SingleQuotedString:
|
||||||
case CppToken::Type::Number:
|
case CppToken::Type::Number:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue