Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-08-13 15:37:53 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-08-13 15:37:53 (GMT)
commita204e9d2bd35efe27d9165f2e19d123820012ca4 (patch)
tree1ee62cf5516005aade780c21bfc1a2213f965c90
parent236cb770b816cf15fac880b79d24b48509ec4183 (diff)
Gtk.Notebook does not have tab_vborder anymore, should be fixed in the theme.
Signed-off-by: Manuel Quiñones <manuq@laptop.org>
-rw-r--r--src/sugar3/graphics/toolbox.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sugar3/graphics/toolbox.py b/src/sugar3/graphics/toolbox.py
index fedca0b..1acc190 100644
--- a/src/sugar3/graphics/toolbox.py
+++ b/src/sugar3/graphics/toolbox.py
@@ -41,8 +41,9 @@ class Toolbox(Gtk.VBox):
self._notebook.set_tab_pos(Gtk.PositionType.BOTTOM)
self._notebook.set_show_border(False)
self._notebook.set_show_tabs(False)
- self._notebook.props.tab_vborder = style.TOOLBOX_TAB_VBORDER
- self._notebook.props.tab_hborder = style.TOOLBOX_TAB_HBORDER
+ # FIXME in the theme
+ # self._notebook.props.tab_vborder = style.TOOLBOX_TAB_VBORDER
+ # self._notebook.props.tab_hborder = style.TOOLBOX_TAB_HBORDER
self.pack_start(self._notebook, True, True, 0)
self._notebook.show()