[dia] Part of bug #599447 - High Contrast Black & Inaccessible Widgets
- From: Hans Breuer <hans src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [dia] Part of bug #599447 - High Contrast Black & Inaccessible Widgets
- Date: Sat, 7 Nov 2009 16:09:24 +0000 (UTC)
commit 89287cf7b7c106f03af01b2dc1d769a37e83a484
Author: Hans Breuer <hans breuer org>
Date: Sat Nov 7 16:30:23 2009 +0100
Part of bug #599447 - High Contrast Black & Inaccessible Widgets
DiaArrowChooser was wrongly using hardcoded black/white for rendering.
Now it is switched to widget colors to be consistent with
DiaLineChooser and useable with dark themes.
lib/diaarrowchooser.c | 21 +++++++++++++++------
1 files changed, 15 insertions(+), 6 deletions(-)
---
diff --git a/lib/diaarrowchooser.c b/lib/diaarrowchooser.c
index 732d89d..a73f5b1 100644
--- a/lib/diaarrowchooser.c
+++ b/lib/diaarrowchooser.c
@@ -214,12 +214,21 @@ dia_arrow_preview_expose(GtkWidget *widget, GdkEventExpose *event)
renderer_pixmap_set_pixmap(renderer, win, x, y, width, height);
renderer_ops->begin_render(renderer);
renderer_ops->set_linewidth(renderer, linewidth);
- renderer_ops->draw_line(renderer, &from, &to, &color_black);
- arrow_draw (renderer, arrow_type.type,
- &arrow_head, &from,
- arrow_type.length,
- arrow_type.width,
- linewidth, &color_black, &color_white);
+ {
+ Color color_bg, color_fg;
+ /* the text colors are the best approximation to what we had */
+ GdkColor bg = widget->style->base[GTK_WIDGET_STATE(widget)];
+ GdkColor fg = widget->style->text[GTK_WIDGET_STATE(widget)];
+
+ GDK_COLOR_TO_DIA(bg, color_bg);
+ GDK_COLOR_TO_DIA(fg, color_fg);
+ renderer_ops->draw_line(renderer, &from, &to, &color_fg);
+ arrow_draw (renderer, arrow_type.type,
+ &arrow_head, &from,
+ arrow_type.length,
+ arrow_type.width,
+ linewidth, &color_fg, &color_bg);
+ }
renderer_ops->end_render(renderer);
g_object_unref(renderer);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]