From 18f5768c2d68d42f4cf712c56f409616db61453e Mon Sep 17 00:00:00 2001 From: Kees Bakker Date: Sat, 8 Mar 2008 11:48:53 +0000 Subject: [PATCH] Changed the use of "main1.css" to _CSS_FILES[0][1] so that the filenames are maintained in one place. Making the first entry the default. svn: r10223 --- src/plugins/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index acdf76c04..0566d7544 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -2986,7 +2986,7 @@ class NavWebOptions(MenuReportOptions): encoding.set_help( _("The encoding to be used for the web files")) menu.add_option(category_name, "encoding", encoding) - css = EnumeratedListOption(_('Stylesheet'), 'main1.css' ) + css = EnumeratedListOption(_('Stylesheet'), _CSS_FILES[0][1]) for style in _CSS_FILES: css.add_item(style[1], style[0]) css.set_help( _("The style sheet to be used for the web page"))