UserPreferences.st
changeset 11213 8457d57d9b76
parent 11143 3712ab6b344b
child 11214 ad61819068b9
--- a/UserPreferences.st	Tue Oct 14 10:01:14 2008 +0200
+++ b/UserPreferences.st	Tue Oct 14 10:31:51 2008 +0200
@@ -540,14 +540,14 @@
 !UserPreferences methodsFor:'acccesing-locale'!
 
 decimalPointCharacter
-    "todO: migrate from ClassVar in Number;
+    "toDo: migrate from ClassVar in Number;
      use this for new applications"
 
     ^ $.
 !
 
 thousandsSeparatorCharacter
-    "todO: migrate from ClassVar elsewhere;
+    "toDo: migrate from ClassVar elsewhere;
      use this for new applications"
 
     ^ $'
@@ -1240,8 +1240,14 @@
 !
 
 showSearchBarInBrowser
-
-    ^ self at:#showSearchBarInBrowser ifAbsent:true
+    "true, if the search-entry fields are shown in the browser itself
+     (like in firefox). False if a dialog is to be opened."
+
+    "/ cg: disabled for now, until fixed.
+    "/ does not initially select the searchString.
+    "/ thereby interrupting the workflow...
+
+    ^ self at:#showSearchBarInBrowser ifAbsent:false
 
     "
      UserPreferences current showSearchBarInBrowser
@@ -1251,6 +1257,8 @@
 !
 
 showSearchBarInBrowser:aBoolean
+    "true, if the search-entry fields are shown in the browser itself
+     (like in firefox). False if a dialog is to be opened."
 
     ^ self at:#showSearchBarInBrowser put:aBoolean
 
@@ -2659,5 +2667,5 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.205 2008-08-28 18:06:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.206 2008-10-14 08:31:51 cg Exp $'
 ! !