DisplayObjectView.st
author Patrik Svestka <patrik.svestka@gmail.com>
Fri, 19 Nov 2021 14:35:04 +0100
branchjv
changeset 19620 8d670b9a4937
parent 16781 0d8b05ac5efd
permissions -rw-r--r--
Minor refinements of Jan's Monokai code view theme tweaks This patch changes the following: - self displayed italic with the OrangePro color used - red (underwave) hopefully less strainful for the eyes

"{ Package: 'stx:libtool' }"

"{ NameSpace: Smalltalk }"

View subclass:#DisplayObjectView
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Misc'
!


!DisplayObjectView methodsFor:'drawing'!

redraw
    model displayOn:self x:0 y:(model ascentOn:self)
! !

!DisplayObjectView class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !