Exemple #1
0
 def font_key_wizard(self):
     from calibre.gui2.convert.font_key import FontKeyChooser
     d = FontKeyChooser(self, self.opt_base_font_size.value(),
             unicode(self.opt_font_size_mapping.text()).strip())
     if d.exec_() == d.Accepted:
         self.opt_font_size_mapping.setText(', '.join(['%.1f'%x for x in
             d.fsizes]))
         self.opt_base_font_size.setValue(d.dbase)
Exemple #2
0
 def font_key_wizard(self):
     from calibre.gui2.convert.font_key import FontKeyChooser
     d = FontKeyChooser(self, self.opt_base_font_size.value(),
                        str(self.opt_font_size_mapping.text()).strip())
     if d.exec_() == d.Accepted:
         self.opt_font_size_mapping.setText(', '.join(
             ['%.1f' % x for x in d.fsizes]))
         self.opt_base_font_size.setValue(d.dbase)