SettingsDialog.st
changeset 18390 f908dc1c5812
parent 18322 5ac30199fb23
child 18507 2844e4dee422
--- a/SettingsDialog.st	Mon Sep 17 16:26:47 2018 +0200
+++ b/SettingsDialog.st	Tue Sep 18 12:29:43 2018 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2002 by eXept Software AG
               All Rights Reserved
@@ -1648,7 +1646,7 @@
     item isNil ifTrue:[ item := applicationList root ].
 
     lastSelection := item.
-    noApp := (item isNil) ifTrue:true ifFalse:[item isCategory].
+    noApp := item isNil or:[item isCategory].
     self enableOK value:(noApp not).
     self enableReload value:(noApp not).
     self enableHelp value:(noApp not).
@@ -1718,6 +1716,7 @@
     "Modified: / 29-10-2010 / 11:51:13 / cg"
     "Modified: / 17-02-2012 / 10:24:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified (comment): / 06-08-2018 / 16:13:42 / Claus Gittinger"
+    "Modified: / 18-09-2018 / 12:08:30 / Stefan Vogel"
 !
 
 update:something with:aParameter from:changedObject