generated from hpi-swa-teaching/SWT-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Haruko Schmidt
committed
Jul 12, 2024
1 parent
3b850fa
commit 72f6a9d
Showing
10 changed files
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
Squello-Core.package/SPBPluggablePasteUpMorph.class/instance/repelsMorph.event..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
dropping/grabbing | ||
repelsMorph: aMorph event: anEvent | ||
|
||
^ self reject ifNotNil: [self reject value: aMorph value: anEvent]. | ||
^ self reject | ||
ifNotNil: [self reject value: aMorph value: anEvent]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
accessing | ||
activeCard | ||
|
||
^ activeCard ifNil: [activeCard := SPBNullCard new]. | ||
^ activeCard | ||
ifNil: [activeCard := SPBNullCard new]. |
6 changes: 4 additions & 2 deletions
6
Squello-Core.package/SPBSidebar.class/instance/getCloseButtonLabel.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'. |
3 changes: 2 additions & 1 deletion
3
Squello-Core.package/SPBSidebar.class/instance/potentialAssignees.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
accessing | ||
potentialAssignees | ||
|
||
^ potentialAssignees ifNil: [potentialAssignees := self boardProvider listPossibleAssignees]. | ||
^ potentialAssignees | ||
ifNil: [potentialAssignees := self boardProvider listPossibleAssignees]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
Squello-Core.package/SPBSidebar.class/instance/potentialLabels.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
accessing | ||
potentialLabels | ||
|
||
^ potentialLabels ifNil: [potentialLabels := self boardProvider listPossibleLabels]. | ||
^ potentialLabels | ||
ifNil: [potentialLabels := self boardProvider listPossibleLabels]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters