#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Mon, 09 Oct 2017 17:44:09 +0200
changeset 17704 a14b0a39f7b3
parent 17703 839e6a6e0d32
child 17705 bfbd5f0b4cb9
#REFACTORING by stefan class: SettingsDialog changed: #postOpenWith: (send #anElement instead of #anyOne)
SettingsDialog.st
--- a/SettingsDialog.st	Mon Oct 09 17:43:51 2017 +0200
+++ b/SettingsDialog.st	Mon Oct 09 17:44:09 2017 +0200
@@ -1853,11 +1853,12 @@
     self rootItem expand.
     super postOpenWith:aBuilder.
     (items := self rootItem children) size == 1 ifTrue:[
-        self selectedItem value: items anyOne.
+        self selectedItem value: items anElement.
     ]
 
     "Modified: / 03-11-2007 / 14:23:25 / cg"
     "Modified: / 03-10-2011 / 16:27:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 09-10-2017 / 17:20:04 / stefan"
 ! !
 
 !SettingsDialog methodsFor:'menu actions'!