Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2398)

Unified Diff: tryton/gui/main.py

Issue 79055: Allow to store wizard size (Closed)
Patch Set: Created 15 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tryton/config.py ('k') | tryton/gui/window/view_form/view/list.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tryton/gui/main.py
===================================================================
--- a/tryton/gui/main.py
+++ b/tryton/gui/main.py
@@ -625,15 +625,15 @@
if CONFIG['form.toolbar']:
checkmenuitem_toolbar.set_active(True)
- checkmenuitem_tree_width = gtk.CheckMenuItem(_('Save Columns Width'))
- checkmenuitem_tree_width.connect('activate',
- lambda menuitem: CONFIG.__setitem__('client.tree_width',
+ checkmenuitem_save_width_height = gtk.CheckMenuItem(_('Save Width/Height'))
+ checkmenuitem_save_width_height.connect('activate',
+ lambda menuitem: CONFIG.__setitem__('client.save_width_height',
menuitem.get_active()))
- checkmenuitem_tree_width.set_accel_path(
- '<tryton>/Options/Form/Save Columns Width')
- menu_form.add(checkmenuitem_tree_width)
- if CONFIG['client.tree_width']:
- checkmenuitem_tree_width.set_active(True)
+ checkmenuitem_save_width_height.set_accel_path(
+ '<tryton>/Options/Form/Save Width Height')
+ menu_form.add(checkmenuitem_save_width_height)
+ if CONFIG['client.save_width_height']:
+ checkmenuitem_save_width_height.set_active(True)
checkmenuitem_spellcheck = gtk.CheckMenuItem(_('Spell Checking'))
checkmenuitem_spellcheck.connect('activate',
« no previous file with comments | « tryton/config.py ('k') | tryton/gui/window/view_form/view/list.py » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b