Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-07-04 13:55:31 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-07-04 13:55:31 (GMT)
commit96cdc76aef688a37b208805d9836ff869d5d55a9 (patch)
tree26bc2c78fae5146774acd9ad418bccdfd9548b12
parent440ed5d783ec73f79363db4f18aa53acbc0d5e9c (diff)
Bottom panel on darker grey
-rw-r--r--finance.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/finance.py b/finance.py
index 14a4511..9a26915 100644
--- a/finance.py
+++ b/finance.py
@@ -190,13 +190,19 @@ class Finance(Activity):
style.DEFAULT_SPACING)
self.balancelabel.set_halign(Gtk.Align.END)
+ summary_evbox = Gtk.EventBox()
+ summary_evbox.add(summarybox)
+ summary_evbox.modify_bg(Gtk.StateType.NORMAL,
+ style.Color('#666666').get_gdk_color())
+ summary_evbox.set_size_request(-1, style.GRID_CELL_SIZE)
+
vbox = Gtk.VBox()
vbox.pack_start(evbox, False, False, 0)
vbox.pack_start(Gtk.Separator(orientation=Gtk.Orientation.VERTICAL),
False, False, 0)
vbox.pack_start(self.screenbox, True, True, 0)
- vbox.pack_start(summarybox, False, False, 10)
+ vbox.pack_start(summary_evbox, False, False, 0)
# Start with the main screen.
self.push_screen(self.register)