Skip to content

Commit

Permalink
support preferences correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Jul 18, 2020
1 parent 5d4e3cd commit 6686b4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GeneralRules/ReImplementedNotSentRule.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ReImplementedNotSentRule class >> cleanUp [

{ #category : #accessing }
ReImplementedNotSentRule class >> enabled [
^false
^ enabled ifNil: [ enabled := false ]
]

{ #category : #initialization }
Expand Down
2 changes: 1 addition & 1 deletion src/Renraku/ReRuleManager.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ ReRuleManager class >> ruleToggleSettingsOn: aBuilder [
(aBuilder setting: rule enabledSettingID)
selector: #enabled;
target: rule;
default: true;
default: rule enabled;
label: inst name;
description: inst rationale ] ]
]
Expand Down

0 comments on commit 6686b4e

Please sign in to comment.