We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97e834 commit 1f8dd15Copy full SHA for 1f8dd15
src/Commander2-UI/CmUICommand.class.st
@@ -86,7 +86,10 @@ CmUICommand >> iconName: aSymbol [
86
]
87
88
{ #category : #configuring }
89
-CmUICommand >> iconName: aString from: anIconProvider [
+CmUICommand >> iconName: aString from: anIconProvider [
90
+ "This methods is just some syntax sugar to allow one to set both the icon name and icon provider in a single message.
91
+ It is totally equivalent to set the icon name and provider separately.
92
+ "
93
self iconProvider: anIconProvider.
94
self iconName: aString.
95
0 commit comments