From eed628e2dc5a97718b1872c03d56a14cbf49a31b Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Sun, 27 Nov 2011 17:19:21 +0000 Subject: [PATCH] Change the boolean state of self.__create_thumbs_only to False at start. svn: r18515 --- src/plugins/webreport/NarrativeWeb.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index d6246ab11..3fe0746fc 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -7319,9 +7319,10 @@ class NavWebOptions(MenuReportOptions): addopt( "gallery", self.__gallery ) 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.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?")) + 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 " + "images as in the Media Page, and only a thumb- sized images. This will allow you to have a much " + "smaller total upload size to your web hosting site.")) addopt("create_thumbs_only", self.__create_thumbs_only) self.__create_thumbs_only.connect("value-changed", self.__gallery_changed)