Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/layout.py
diff options
context:
space:
mode:
Diffstat (limited to 'layout.py')
-rw-r--r--layout.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/layout.py b/layout.py
index c967527..ee43732 100644
--- a/layout.py
+++ b/layout.py
@@ -28,6 +28,7 @@ class CalcLayout:
FONT_BIG_NARROW = "sans italic 14"
FONT_BIGGER_POINTS = 18
FONT_BIGGER = "sans bold %d" % FONT_BIGGER_POINTS
+ FONT_BOLD = "sans bold"
def __init__(self, parent):
self._parent = parent
@@ -203,7 +204,7 @@ class CalcLayout:
eb = Gtk.EventBox()
eb.add(self.pad)
eb.modify_bg(Gtk.StateType.NORMAL, self.col_black)
- self.grid.attach(eb, 0, 7, 6, 26)
+ self.grid.attach(eb, 0, 7, 6, 22)
# Right part: container and equation button
hc2 = Gtk.HBox()