Skip to content

Commit

Permalink
Fixed show/hide command names
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Dec 4, 2024
1 parent a3ae9e7 commit 154a4c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Class {
#name : 'OPHideDependentRoassalShapesCommand',
#name : 'OPHideDependentRoassalShapeCommand',
#superclass : 'OPToggleRoassalShapeCommand',
#category : 'OpenPonk-Spec-Diagram-RoassalShape-Commands',
#package : 'OpenPonk-Spec',
#tag : 'Diagram-RoassalShape-Commands'
}

{ #category : 'execution' }
OPHideDependentRoassalShapesCommand >> basicExecute [
OPHideDependentRoassalShapeCommand >> basicExecute [

controllers
select: #isHideable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Class {
#name : 'OPShowDependentRoassalShapesCommand',
#name : 'OPShowDependentRoassalShapeCommand',
#superclass : 'OPToggleRoassalShapeCommand',
#category : 'OpenPonk-Spec-Diagram-RoassalShape-Commands',
#package : 'OpenPonk-Spec',
#tag : 'Diagram-RoassalShape-Commands'
}

{ #category : 'execution' }
OPShowDependentRoassalShapesCommand >> basicExecute [
OPShowDependentRoassalShapeCommand >> basicExecute [
models do: [ :each | executor showDependentFor: each ]
]
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ OPToggleRoassalShapeCommand >> basicExecute [
OPToggleRoassalShapeCommand >> defaultMenuItemName [

^ ((((self class name withoutPrefix: 'OP') withoutSuffix:
'FigureCommand') splitCamelCase collect: #asLowercase)
'RoassalShapeCommand') splitCamelCase collect: #asLowercase)
joinUsing: ' ') capitalized
]

Expand Down

0 comments on commit 154a4c4

Please sign in to comment.