mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
GTextEditor: Make color of non-highlighted line numbers darker
Fixes #1123.
This commit is contained in:
parent
b88be25214
commit
9e2c595c64
Notes:
sideshowbarker
2024-07-19 09:51:51 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/9e2c595c64a
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ void GTextEditor::paint_event(GPaintEvent& event)
|
|||
String::number(i + 1),
|
||||
is_current_line ? Font::default_bold_font() : font(),
|
||||
TextAlignment::TopRight,
|
||||
is_current_line ? widget_background_color.darkened(0.6f) : widget_background_color.darkened(0.7f));
|
||||
is_current_line ? widget_background_color.darkened(0.2f) : widget_background_color.darkened(0.4f));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue