From 40905d54ed138ac55352b0f9034779022505be97 Mon Sep 17 00:00:00 2001 From: eidheim Date: Sat, 3 Jul 2021 07:52:32 +0200 Subject: [PATCH] Made similar symbol tags more visibile when using dark themes --- src/source.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/source.cpp b/src/source.cpp index 299f1f6..df12e6b 100644 --- a/src/source.cpp +++ b/src/source.cpp @@ -138,6 +138,7 @@ Source::View::View(const boost::filesystem::path &file_path, const Glib::RefPtr< similar_symbol_tag = get_buffer()->create_tag(); similar_symbol_tag->property_weight() = Pango::WEIGHT_ULTRAHEAVY; + similar_symbol_tag->property_background_rgba() = Gdk::RGBA("rgba(255, 255, 255, 0.075)"); clickable_tag = get_buffer()->create_tag(); clickable_tag->property_underline() = Pango::Underline::UNDERLINE_SINGLE; clickable_tag->property_underline_set() = true;