#TUNING by exept
authorClaus Gittinger <cg@exept.de>
Sun, 08 Sep 2019 15:43:38 +0200
changeset 19129 ba7f0ea254da
parent 19128 b1b19801ca0a
child 19130 3a3f3accc53d
#TUNING by exept class: BookmarksEditDialog changed: #indexForNewBookmark (send #== instead of #=)
BookmarksEditDialog.st
--- a/BookmarksEditDialog.st	Sun Sep 08 15:42:53 2019 +0200
+++ b/BookmarksEditDialog.st	Sun Sep 08 15:43:38 2019 +0200
@@ -384,7 +384,7 @@
 
     | index |
     index := self selectedBookmarkIndex.
-    index = 0 ifTrue:[^ self bookmarkList size].
+    index == 0 ifTrue:[^ self bookmarkList size].
     ^ index
 !