Add width and height configuration settings

svn: r17961
This commit is contained in:
Nick Hall 2011-07-24 23:38:49 +00:00
parent 9ff46d9eab
commit 6df8226f11
2 changed files with 7 additions and 3 deletions

View File

@ -178,6 +178,10 @@ register('interface.attribute-height', 350)
register('interface.attribute-width', 600)
register('interface.child-ref-height', 450)
register('interface.child-ref-width', 600)
register('interface.citation-height', 450)
register('interface.citation-sel-height', 450)
register('interface.citation-sel-width', 600)
register('interface.citation-width', 600)
register('interface.clipboard-height', 300)
register('interface.clipboard-width', 300)
register('interface.dont-ask', False)

View File

@ -18,7 +18,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id: editsource.py 16680 2011-02-20 10:52:06Z bmcage $
# $Id$
#-------------------------------------------------------------------------
#
@ -132,8 +132,8 @@ class EditCitation(EditPrimary):
and overridden here.
"""
self.width_key = 'interface.source-width'
self.height_key = 'interface.source-height'
self.width_key = 'interface.citation-width'
self.height_key = 'interface.citation-height'
assert(self.obj)
self.glade = Glade()