Skip to content

Commit

Permalink
improved settings names
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 14, 2023
1 parent 1d39298 commit 4805f6a
Showing 1 changed file with 3 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,6 @@ OPBPMNValidationWorkbench class >> defaultLayout [
yourself
]

{ #category : #layout }
OPBPMNValidationWorkbench class >> developerSettingsOn: aBuilder [

<systemsettings>
(aBuilder group: #'op-dev')
label: 'OpenPonk Development';
parent: #openponk;
order: 100.
(aBuilder setting: #isDevelopmentMode)
parent: #'op-dev';
target: self;
label: 'Enable Development Mode';
description: 'Add extra options useful for developers.'
]

{ #category : #layout }
OPBPMNValidationWorkbench class >> initialExtent [

Expand All @@ -68,12 +53,8 @@ OPBPMNValidationWorkbench class >> initialListsWidth [

{ #category : #layout }
OPBPMNValidationWorkbench class >> isDevelopmentMode [
^ isDevelopmentMode ifNil: [ false ]
]

{ #category : #layout }
OPBPMNValidationWorkbench class >> isDevelopmentMode: aBoolean [
isDevelopmentMode := aBoolean
^ OPWorkbench isDevelopmentMode
]

{ #category : #layout }
Expand Down Expand Up @@ -101,13 +82,6 @@ OPBPMNValidationWorkbench class >> openProject: aProject [
yourself
]

{ #category : #layout }
OPBPMNValidationWorkbench class >> settingsOn: aBuilder [

<systemsettings>
(aBuilder group: #openponk) label: 'OpenPonk'
]

{ #category : #layout }
OPBPMNValidationWorkbench class >> verificationFrameworkSettingsGroups: aBuilder [

Expand All @@ -118,8 +92,8 @@ OPBPMNValidationWorkbench class >> verificationFrameworkSettingsGroups: aBuilder
label: 'Anti-patterns';
parent: #openponk;
order: 250."
(aBuilder group: #validations)
label: 'Validations';
(aBuilder group: #bpmnValidations)
label: 'BPMN Validations';
parent: #openponk;
order: 240
]
Expand Down

0 comments on commit 4805f6a

Please sign in to comment.