terminal has a fixed scrollbar to avoid
authorClaus Gittinger <cg@exept.de>
Fri, 05 Mar 2004 10:42:48 +0100
changeset 5662 a5f174a31089
parent 5661 706b3e6cfd1f
child 5663 4dde785dc0fe
terminal has a fixed scrollbar to avoid window-size-change orgy
TerminalApplication.st
--- a/TerminalApplication.st	Fri Mar 05 10:41:04 2004 +0100
+++ b/TerminalApplication.st	Fri Mar 05 10:42:48 2004 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2001 by eXept Software AG
               All Rights Reserved
@@ -353,6 +355,8 @@
     |scr|
 
     scr := (HVScrollableView for:VT100TerminalView).
+    scr autoHideScrollBars:false.
+    scr horizontalMini:true.
     self window realized ifTrue:[
         self window sensor pushUserEvent:#startShellInSelectedWindow for:self.
     ].
@@ -457,5 +461,5 @@
 !TerminalApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/TerminalApplication.st,v 1.7 2003-12-31 18:38:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/TerminalApplication.st,v 1.8 2004-03-05 09:42:48 cg Exp $'
 ! !