From c8367703f533d8b2b7f41a2d2022fe64262fbd5a Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Mon, 28 Nov 2011 04:46:20 +0000 Subject: [PATCH] Fixed False state of self.__create_thumbs_only option to make sure it is not on when first starting NarrativeWeb. svn: r18523 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index d7f47b7b7..cdb555bac 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -7308,7 +7308,7 @@ 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 = 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 or not?")) addopt("create_thumbs_only", self.__create_thumbs_only)