Fix
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 07 Jun 2011 22:56:19 +0000
changeset 8 05cd84624a32
parent 7 765e41c1aa8c
child 9 267f2990f003
Fix
WebKitView.st
--- a/WebKitView.st	Tue Jun 07 21:32:15 2011 +0000
+++ b/WebKitView.st	Tue Jun 07 22:56:19 2011 +0000
@@ -110,9 +110,12 @@
         url addDependent:self.
     ].
     newValue := url value.
+    newValue ifNil:[url setValue:(newValue := 'about:blank')].
     oldValue ~~ newValue ifTrue:[
         self update:#value with:newValue from:url.
     ].
+
+    "Modified: / 07-06-2011 / 23:03:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !WebKitView methodsFor:'change & update'!