From 23255cdaf664f59c50083bef33a02499e2151767 Mon Sep 17 00:00:00 2001 From: eidheim Date: Sun, 3 Jan 2016 09:31:45 +0100 Subject: [PATCH] Slightly better breakpoint and stop colors in dark style --- src/source.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source.cc b/src/source.cc index 3d32726..66b748f 100644 --- a/src/source.cc +++ b/src/source.cc @@ -125,7 +125,7 @@ Source::View::View(const boost::filesystem::path &file_path, const boost::filesy auto mark_attr_debug_breakpoint=Gsv::MarkAttributes::create(); Gdk::RGBA rgba; rgba.set_red(1.0); - rgba.set_alpha(0.1); + rgba.set_alpha(0.15); mark_attr_debug_breakpoint->set_background(rgba); set_mark_attributes("debug_breakpoint", mark_attr_debug_breakpoint, 100); auto mark_attr_debug_stop=Gsv::MarkAttributes::create();