# HG changeset patch # User Stefan Vogel # Date 1582725044 -3600 # Node ID 1b4dfccafd874842c0fdda80f75b60bb1ec905da # Parent b9e00f16b5c60bbfc8b71a49d557672f97870ab5 #REFACTORING by stefan class: DisplayRootView changed: #initialize diff -r b9e00f16b5c6 -r 1b4dfccafd87 DisplayRootView.st --- a/DisplayRootView.st Wed Feb 26 14:26:01 2020 +0100 +++ b/DisplayRootView.st Wed Feb 26 14:50:44 2020 +0100 @@ -211,13 +211,13 @@ !DisplayRootView methodsFor:'initialization & release'! initialize - |dev| + |graphicsDevice| super initialize. - dev := self device. - width := dev width. - height := dev height. + graphicsDevice := self graphicsDevice. + width := graphicsDevice width. + height := graphicsDevice height. self createRootWindow. realized := true. !