diff options
| author | George Hazan <george.hazan@gmail.com> | 2025-04-30 12:12:30 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2025-04-30 12:12:30 +0300 |
| commit | 8feaf146f426792ab4664012071c344a61afba05 (patch) | |
| tree | 5b21d664d396d2dbf7cff2da4cae71c56b8959eb | |
| parent | 78cdac6177e836226b0bca5b9ca992432c5b4e06 (diff) | |
fixes #5006 (NewStory: пропала настройка цвета ников)
| -rw-r--r-- | plugins/NewStory/src/history_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 207972c5f7..53e001979a 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -735,7 +735,7 @@ static void recursive_set_color(element::ptr el, const web_color &fore, const ba el->css_w().set_color(fore);
for (auto &it : el->children())
- if (it->tag() != _a_)
+ if (it->tag() != _a_ && it->tag() != _font_)
recursive_set_color(it, fore, back);
}
|
