Fixed False state of self.__create_thumbs_only option to make sure it is not on when first starting NarrativeWeb.

svn: r18523
This commit is contained in:
Rob G. Healey 2011-11-28 04:46:20 +00:00
parent 606bd5d59d
commit c8367703f5

View File

@ -7308,7 +7308,7 @@ class NavWebOptions(MenuReportOptions):
addopt( "gallery", self.__gallery ) addopt( "gallery", self.__gallery )
self.__gallery.connect('value-changed', self.__gallery_changed) self.__gallery.connect('value-changed', self.__gallery_changed)
self.__create_thumbs_only = BooleanOption(_("Create and only use thumbnail- sized images"), True) self.__create_thumbs_only = BooleanOption(_("Create and only use thumbnail- sized images"), False)
self.__create_thumbs_only.set_help(_("This options allows you the choice to not create any full- sized" self.__create_thumbs_only.set_help(_("This options allows you the choice to not create any full- sized"
"images as in the Media Page, and only a thumb- sized images or not?")) "images as in the Media Page, and only a thumb- sized images or not?"))
addopt("create_thumbs_only", self.__create_thumbs_only) addopt("create_thumbs_only", self.__create_thumbs_only)