give my listView a fixed font.
authorClaus Gittinger <cg@exept.de>
Tue, 05 Aug 1997 16:30:22 +0200
changeset 1273 3a8a91e6c5fa
parent 1272 af9ac7e0c25c
child 1274 39f075433985
give my listView a fixed font.
MemUsageV.st
MemoryUsageView.st
SystemStatusMonitor.st
--- a/MemUsageV.st	Tue Aug 05 16:13:13 1997 +0200
+++ b/MemUsageV.st	Tue Aug 05 16:30:22 1997 +0200
@@ -70,13 +70,15 @@
 
     l origin:(list originRelativeTo:self) x @ 0.0.
 
-    list font:(self font).
-    l font:(self font).
+    list font:(EditTextView defaultFont).
+    l font:(EditTextView defaultFont).
     list menuHolder:self; menuPerformer:self; menuMessage:#usageMenu.
 
     "
      MemoryUsageView open
     "
+
+    "Modified: 4.8.1997 / 01:45:20 / cg"
 ! !
 
 !MemoryUsageView methodsFor:'menu actions'!
@@ -468,5 +470,5 @@
 !MemoryUsageView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Attic/MemUsageV.st,v 1.24 1997-03-02 10:23:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Attic/MemUsageV.st,v 1.25 1997-08-05 14:30:22 cg Exp $'
 ! !
--- a/MemoryUsageView.st	Tue Aug 05 16:13:13 1997 +0200
+++ b/MemoryUsageView.st	Tue Aug 05 16:30:22 1997 +0200
@@ -70,13 +70,15 @@
 
     l origin:(list originRelativeTo:self) x @ 0.0.
 
-    list font:(self font).
-    l font:(self font).
+    list font:(EditTextView defaultFont).
+    l font:(EditTextView defaultFont).
     list menuHolder:self; menuPerformer:self; menuMessage:#usageMenu.
 
     "
      MemoryUsageView open
     "
+
+    "Modified: 4.8.1997 / 01:45:20 / cg"
 ! !
 
 !MemoryUsageView methodsFor:'menu actions'!
@@ -468,5 +470,5 @@
 !MemoryUsageView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/MemoryUsageView.st,v 1.24 1997-03-02 10:23:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/MemoryUsageView.st,v 1.25 1997-08-05 14:30:22 cg Exp $'
 ! !
--- a/SystemStatusMonitor.st	Tue Aug 05 16:13:13 1997 +0200
+++ b/SystemStatusMonitor.st	Tue Aug 05 16:30:22 1997 +0200
@@ -94,7 +94,7 @@
     v origin:0.0@0.0 corner:1.0@1.0.
 
     listView := v scrolledView.
-    listView font:font.
+    listView font:(EditTextView defaultFont).
     listView menuHolder:self; menuPerformer:self; menuMessage:#statusMenu. 
 
     listView multipleSelectOk:true.
@@ -115,7 +115,7 @@
      ProcessMonitor open
     "
 
-    "Modified: 23.1.1997 / 03:21:14 / cg"
+    "Modified: 4.8.1997 / 01:44:47 / cg"
 !
 
 mapped
@@ -206,5 +206,5 @@
 !SystemStatusMonitor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.4 1997-03-02 10:23:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SystemStatusMonitor.st,v 1.5 1997-08-05 14:30:01 cg Exp $'
 ! !