diff --git a/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/applyUserInterfaceTheme.st b/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/applyUserInterfaceTheme.st index b17d7a6b..c053b180 100644 --- a/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/applyUserInterfaceTheme.st +++ b/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/applyUserInterfaceTheme.st @@ -2,4 +2,5 @@ initialization applyUserInterfaceTheme super applyUserInterfaceTheme. - self color: ((self userInterfaceTheme get: #uniformWindowColor for: Model) ifNil: [Color black]). \ No newline at end of file + self color: ((self userInterfaceTheme get: #uniformWindowColor for: Model) + ifNil: [Color black]). \ No newline at end of file diff --git a/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/repelsMorph.event..st b/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/repelsMorph.event..st index a332a470..4167b1e1 100644 --- a/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/repelsMorph.event..st +++ b/Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/repelsMorph.event..st @@ -1,4 +1,5 @@ dropping/grabbing repelsMorph: aMorph event: anEvent - ^ self reject ifNotNil: [self reject value: aMorph value: anEvent]. \ No newline at end of file + ^ self reject + ifNotNil: [self reject value: aMorph value: anEvent]. \ No newline at end of file diff --git a/Squello-Core.package/SPBPluggablePasteUpMorph.class/methodProperties.json b/Squello-Core.package/SPBPluggablePasteUpMorph.class/methodProperties.json index b5366065..b8a225f8 100644 --- a/Squello-Core.package/SPBPluggablePasteUpMorph.class/methodProperties.json +++ b/Squello-Core.package/SPBPluggablePasteUpMorph.class/methodProperties.json @@ -5,7 +5,7 @@ "acceptDroppingMorph:event:" : "lo 8/1/2022 15:10", "actionModel" : "lo 8/1/2022 15:17", "actionModel:" : "lo 8/1/2022 15:18", - "applyUserInterfaceTheme" : "AH 6/14/2024 11:34", + "applyUserInterfaceTheme" : "Haru 7/12/2024 14:43", "dropped" : "lo 5/26/2022 23:03", "dropped:" : "lo 8/1/2022 15:10", "handlesMouseOver:" : "tk 7/30/2022 22:27", @@ -13,4 +13,4 @@ "isColumn" : "lo 8/1/2022 14:51", "reject" : "lo 5/26/2022 21:43", "reject:" : "lo 8/1/2022 15:11", - "repelsMorph:event:" : "LW 7/14/2022 11:27" } } + "repelsMorph:event:" : "Haru 7/12/2024 14:43" } } diff --git a/Squello-Core.package/SPBSidebar.class/instance/activeCard.st b/Squello-Core.package/SPBSidebar.class/instance/activeCard.st index 925d8cd4..943375c8 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/activeCard.st +++ b/Squello-Core.package/SPBSidebar.class/instance/activeCard.st @@ -1,4 +1,5 @@ accessing activeCard - ^ activeCard ifNil: [activeCard := SPBNullCard new]. \ No newline at end of file + ^ activeCard + ifNil: [activeCard := SPBNullCard new]. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/instance/getCloseButtonLabel.st b/Squello-Core.package/SPBSidebar.class/instance/getCloseButtonLabel.st index 751e8de0..8afc5af1 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/getCloseButtonLabel.st +++ b/Squello-Core.package/SPBSidebar.class/instance/getCloseButtonLabel.st @@ -1,6 +1,8 @@ accessing getCloseButtonLabel - self activeCard isNote ifTrue: [^ 'Cannot close this card']. - self activeCard isClosed ifTrue: [^ 'Reopen']. + self activeCard isNote + ifTrue: [^ 'Cannot close this card']. + self activeCard isClosed + ifTrue: [^ 'Reopen']. ^ 'Close'. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/instance/potentialAssignees.st b/Squello-Core.package/SPBSidebar.class/instance/potentialAssignees.st index 3cd9a71f..1e689f6a 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/potentialAssignees.st +++ b/Squello-Core.package/SPBSidebar.class/instance/potentialAssignees.st @@ -1,4 +1,5 @@ accessing potentialAssignees - ^ potentialAssignees ifNil: [potentialAssignees := self boardProvider listPossibleAssignees]. \ No newline at end of file + ^ potentialAssignees + ifNil: [potentialAssignees := self boardProvider listPossibleAssignees]. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/instance/potentialAssigneesList.st b/Squello-Core.package/SPBSidebar.class/instance/potentialAssigneesList.st index 7cb90a8f..0723b4e3 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/potentialAssigneesList.st +++ b/Squello-Core.package/SPBSidebar.class/instance/potentialAssigneesList.st @@ -7,4 +7,5 @@ potentialAssigneesList (self activeCard isRealCard not or: [potentialAssignees isNil]) ifTrue: [^ self potentialAssigneesListHeader]. ^ self potentialAssigneesListHeader, - potentialAssignees select: [:potentialAssignee | (assignees includes: potentialAssignee) not]. \ No newline at end of file + potentialAssignees + select: [:potentialAssignee | (assignees includes: potentialAssignee) not]. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/instance/potentialLabels.st b/Squello-Core.package/SPBSidebar.class/instance/potentialLabels.st index 7f09dd87..23f7501a 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/potentialLabels.st +++ b/Squello-Core.package/SPBSidebar.class/instance/potentialLabels.st @@ -1,4 +1,5 @@ accessing potentialLabels - ^ potentialLabels ifNil: [potentialLabels := self boardProvider listPossibleLabels]. \ No newline at end of file + ^ potentialLabels + ifNil: [potentialLabels := self boardProvider listPossibleLabels]. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/instance/potentialLabelsList.st b/Squello-Core.package/SPBSidebar.class/instance/potentialLabelsList.st index f02a0076..12d078c3 100644 --- a/Squello-Core.package/SPBSidebar.class/instance/potentialLabelsList.st +++ b/Squello-Core.package/SPBSidebar.class/instance/potentialLabelsList.st @@ -7,4 +7,5 @@ potentialLabelsList (self activeCard isRealCard not or: [potentialLabels isNil]) ifTrue: [^ self potentialLabelsListHeader]. ^ self potentialLabelsListHeader, - potentialLabels select: [:potentialLabel | (labels includes: potentialLabel) not]. \ No newline at end of file + potentialLabels + select: [:potentialLabel | (labels includes: potentialLabel) not]. \ No newline at end of file diff --git a/Squello-Core.package/SPBSidebar.class/methodProperties.json b/Squello-Core.package/SPBSidebar.class/methodProperties.json index 1b1d5441..3d579895 100644 --- a/Squello-Core.package/SPBSidebar.class/methodProperties.json +++ b/Squello-Core.package/SPBSidebar.class/methodProperties.json @@ -2,7 +2,7 @@ "class" : { }, "instance" : { - "activeCard" : "mcr 8/1/2022 01:18", + "activeCard" : "Haru 7/12/2024 14:31", "activeCard:" : "AH 5/25/2024 17:28", "activeCardAssigneeList" : "mcr 8/1/2022 00:50", "activeCardAssigneeListHeader" : "mcr 8/1/2022 00:51", @@ -24,23 +24,23 @@ "dropOnLabels:at:" : "lo 8/1/2022 14:55", "dropOnPotentialAssignees:at:" : "lo 8/1/2022 14:55", "dropOnPotentialLabels:at:" : "lo 8/1/2022 14:55", - "getCloseButtonLabel" : "AH 6/1/2024 17:59", + "getCloseButtonLabel" : "Haru 7/12/2024 14:28", "labelIcon:" : "mcr 8/1/2022 01:15", "labelSelected" : "mcr 8/1/2022 01:14", "labelSelected:" : "lo 8/1/2022 14:55", "onCloseButton" : "AH 5/25/2024 17:28", "potentialAssigneeSelected" : "mcr 8/1/2022 01:13", "potentialAssigneeSelected:" : "lo 8/1/2022 14:56", - "potentialAssignees" : "mcr 8/1/2022 01:16", + "potentialAssignees" : "Haru 7/12/2024 14:30", "potentialAssignees:" : "mcr 8/1/2022 01:16", - "potentialAssigneesList" : "mcr 8/4/2022 02:16", + "potentialAssigneesList" : "Haru 7/12/2024 14:38", "potentialAssigneesListHeader" : "mcr 8/1/2022 00:54", "potentialLabelIcon:" : "mcr 8/1/2022 01:15", "potentialLabelSelected" : "mcr 8/1/2022 01:14", "potentialLabelSelected:" : "lo 8/1/2022 14:56", - "potentialLabels" : "mcr 8/1/2022 01:16", + "potentialLabels" : "Haru 7/12/2024 14:30", "potentialLabels:" : "mcr 8/1/2022 01:17", - "potentialLabelsList" : "mcr 8/4/2022 02:29", + "potentialLabelsList" : "Haru 7/12/2024 14:39", "potentialLabelsListHeader" : "mcr 8/1/2022 00:55", "updateActiveCardDescription:" : "mcr 8/1/2022 01:12", "updateActiveCardTitle:" : "mcr 8/1/2022 01:12",