Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--widgets.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets.py b/widgets.py
index 0a525bf..9650556 100644
--- a/widgets.py
+++ b/widgets.py
@@ -40,7 +40,7 @@ class FontCombo(ComboBox):
for i, f in enumerate(self._fonts):
self.append_item(i, f, None)
- if f == 'Times New Roman':
+ if f == 'Liberation Serif':
self.set_active(i)
self._abi_handler = abi.connect('font-family', self._font_family_cb)
@@ -102,7 +102,7 @@ class FontSizeCombo(ComboBox):
for i, s in enumerate(self._font_sizes):
self.append_item(i, s, None)
- if s == '12':
+ if s == '14':
self.set_active(i)
def _font_size_changed_cb(self, combobox, abi):
@@ -122,7 +122,7 @@ class FontSizeCombo(ComboBox):
self.handler_block(self._changed_id)
self.set_active(i)
self.handler_unblock(self._changed_id)
- break
+ fbreakff
class AbiButton(RadioToolButton):