class: CodeCompletionHelpMenuView
authorClaus Gittinger <cg@exept.de>
Fri, 08 Nov 2013 12:48:51 +0100
changeset 13669 bb9278273984
parent 13668 fa213bf66a31
child 13670 43d2d7c37e61
class: CodeCompletionHelpMenuView changed: #initStyle
CodeCompletionHelpMenuView.st
--- a/CodeCompletionHelpMenuView.st	Fri Nov 08 12:21:30 2013 +0100
+++ b/CodeCompletionHelpMenuView.st	Fri Nov 08 12:48:51 2013 +0100
@@ -49,7 +49,13 @@
 !CodeCompletionHelpMenuView methodsFor:'initialization'!
 
 initStyle
+    |defaultFont|
+
     super initStyle.
+    defaultFont := StyleSheet fontAt:#'activeHelp.font' default:nil.
+    defaultFont notNil ifTrue:[
+        self font:defaultFont
+    ].
     self viewBackground:Color orange lightened lightened.
 ! !
 
@@ -66,10 +72,10 @@
 !CodeCompletionHelpMenuView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.3 2013-09-09 11:21:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.4 2013-11-08 11:48:51 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.3 2013-09-09 11:21:37 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeCompletionHelpMenuView.st,v 1.4 2013-11-08 11:48:51 cg Exp $'
 ! !