From 57286b784587f0f8751dc88fdf9ebb607248c9b0 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 22 Oct 2003 03:20:59 +0000 Subject: [PATCH] * src/PedView.py: Correct colors so that they work with dark and high-contrast themes. svn: r2276 --- gramps2/ChangeLog | 2 ++ gramps2/src/PedView.py | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index dc92615a8..f96b13a1b 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,5 +1,7 @@ 2003-10-21 Alex Roitman * src/MediaView.py: Correct behavior for right-click popup menu. + * src/PedView.py: Correct colors so that they work with dark and + high-contrast themes. 2003-10-20 Don Allingham * src/gramps.glade: widen the ChildSelect window diff --git a/gramps2/src/PedView.py b/gramps2/src/PedView.py index 44e0ec578..c91d41f11 100644 --- a/gramps2/src/PedView.py +++ b/gramps2/src/PedView.py @@ -87,8 +87,8 @@ class DispBox: y1=0, x2=w, y2=h, - outline_color_gdk=style.bg[gtk.STATE_NORMAL], - fill_color_gdk=style.white) + outline_color_gdk=style.fg[gtk.STATE_NORMAL], + fill_color_gdk=style.base[gtk.STATE_NORMAL]) font = gtk.gdk.font_from_description(style.font_desc) self.textbox = self.group.add(gnome.canvas.CanvasText, @@ -358,7 +358,7 @@ class PedigreeView: pts = [startx,y1, startx,y2+(h/2.0), x2,y2+(h/2.0)] item = self.root.add(gnome.canvas.CanvasLine, width_pixels=2, points=pts, line_style=ls, - fill_color_gdk=style.black) + fill_color_gdk=style.fg[gtk.STATE_NORMAL]) item.set_data(_PERSON,data) item.connect("event",self.line_event) self.canvas_items.append(item) @@ -393,7 +393,7 @@ class PedigreeView: msg = _("Double clicking will make %s the active person") % name self.sb.set_status(msg) elif event.type == gtk.gdk.LEAVE_NOTIFY: - obj.set(fill_color_gdk=style.black, width_pixels=2) + obj.set(fill_color_gdk=style.fg[gtk.STATE_NORMAL], width_pixels=2) self.update() def find_tree(self,person,index,depth,list,val=0):