From 5127901d860424f1badadcb118d378e3bf13ef4c Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 05 Sep 2007 12:23:17 +0000 Subject: Gray bottom border for Toolbox. --- (limited to 'sugar') diff --git a/sugar/graphics/toolbox.py b/sugar/graphics/toolbox.py index c24f4f0..fa19cd4 100644 --- a/sugar/graphics/toolbox.py +++ b/sugar/graphics/toolbox.py @@ -17,6 +17,7 @@ import gtk import gobject +import hippo from sugar.graphics.toolbutton import ToolButton from sugar.graphics import style @@ -42,10 +43,16 @@ class Toolbox(gtk.VBox): self.pack_start(self._notebook) self._notebook.show() - label = gtk.Label('') - label.set_size_request(-1, style.TOOLBOX_SEPARATOR_HEIGHT) - self.pack_start(label, False) - label.show() + # FIXME improve gtk.Notebook and do this in the theme + canvas = hippo.Canvas() + box = hippo.CanvasBox( + border_color=style.COLOR_BUTTON_GREY.get_int(), + background_color=style.COLOR_PANEL_GREY.get_int(), + box_height=style.TOOLBOX_SEPARATOR_HEIGHT, + border_bottom=style.LINE_WIDTH) + canvas.set_root(box) + self.pack_start(canvas, False) + canvas.show() self._notebook.connect('notify::page', self._notify_page_cb) -- cgit v0.9.1