From eb6fd8db2aa3daf5c2b28204640fc5f7cc84f0df Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phaneDucasse?= <stephane.ducasse@inria.fr>
Date: Wed, 19 Aug 2020 12:41:14 +0200
Subject: [PATCH] Fixes: Setting by adding default values (for
 testDefaultImageDoesNotStoreAnySetting )

---
 src/Pillar-ExporterRichText/PRRichTextComposer.class.st | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/Pillar-ExporterRichText/PRRichTextComposer.class.st b/src/Pillar-ExporterRichText/PRRichTextComposer.class.st
index a2de1f76..474a3e46 100644
--- a/src/Pillar-ExporterRichText/PRRichTextComposer.class.st
+++ b/src/Pillar-ExporterRichText/PRRichTextComposer.class.st
@@ -226,12 +226,14 @@ PRRichTextComposer class >> preferencesSettingsOn: aBuilder [
 		(aBuilder setting: #offline)
 			label: 'To set offline mode';
 			target: self;
+			default: false;
 			description: '
 			When oneline is chosen, requests to external images are only performed when they are not in the image cache (since requesting systematically HTTP may lead of latency. Each figure is cached, so the request is at most done one per external references. When the system is online but the request failed we return a placeholder that is not cached.
 			
 			When offline, requests to external images are not performed. The cache can be reset executing PRRichTextComposer resetCache. When the system is off line and an image is requested, a placeholder is computed but not put in the cache. This way when the system is put online the requested elements will be requested and put in the cache (without needing to flush placeholders from the cache).'. 
 			(aBuilder setting: #notRendering)
 				label: 'To set off the rendering in richtext';
+				default: false;
 				target: self;
 				description: 'Comments are by default rendered via Pillar in Richtext. When this setting is on, they are rendered as plain text (showing their Microdown definitions).'.