[gedit-code-assistance] Now that we use underline make the colors opaque
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gedit-code-assistance] Now that we use underline make the colors opaque
- Date: Sun, 16 Aug 2015 12:29:12 +0000 (UTC)
commit d19b879e421ed43db779f6a26ac460f63c45b463
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Sun Aug 16 14:28:38 2015 +0200
Now that we use underline make the colors opaque
src/gca-diagnostic-colors.vala | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/gca-diagnostic-colors.vala b/src/gca-diagnostic-colors.vala
index e574b17..73ec809 100644
--- a/src/gca-diagnostic-colors.vala
+++ b/src/gca-diagnostic-colors.vala
@@ -33,17 +33,17 @@ class DiagnosticColors
d_errorColor = update_color(context,
"error_bg_color",
{1, 0, 0, 1},
- 0.5);
+ 1);
d_warningColor = update_color(context,
"warning_bg_color",
{1, 0.5, 0, 1},
- 0.5);
+ 1);
d_infoColor = update_color(context,
"info_bg_color",
{0, 0, 1, 1},
- 0.5);
+ 1);
}
private Gdk.RGBA mix_colors(Gdk.RGBA source, Gdk.RGBA dest)
@@ -88,17 +88,17 @@ class DiagnosticColors
d_errorColor = mix_colors(update_color(ctx,
"error_bg_color",
{1, 0, 0, 1},
- 0.5), dest);
+ 1), dest);
d_warningColor = mix_colors(update_color(ctx,
"warning_bg_color",
{1, 0.5, 0, 1},
- 0.5), dest);
+ 1), dest);
d_infoColor = mix_colors(update_color(ctx,
"info_bg_color",
{0, 0, 1, 1},
- 0.5), dest);
+ 1), dest);
ctx.restore();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]