Browse Source

Made similar symbol tags more visibile when using dark themes

pipelines/353213535
eidheim 4 years ago
parent
commit
40905d54ed
  1. 1
      src/source.cpp

1
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 = get_buffer()->create_tag();
similar_symbol_tag->property_weight() = Pango::WEIGHT_ULTRAHEAVY; 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 = get_buffer()->create_tag();
clickable_tag->property_underline() = Pango::Underline::UNDERLINE_SINGLE; clickable_tag->property_underline() = Pango::Underline::UNDERLINE_SINGLE;
clickable_tag->property_underline_set() = true; clickable_tag->property_underline_set() = true;

Loading…
Cancel
Save