From fd8b7ce55adef4bbc73a4cf32f6b17d077af91c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Thu, 22 Jun 2006 00:30:39 +0000 Subject: [PATCH] one more small fix git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17904 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/icon-o-matic/document/Icon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/icon-o-matic/document/Icon.cpp b/src/apps/icon-o-matic/document/Icon.cpp index 6d17863405..96a56e5b1c 100644 --- a/src/apps/icon-o-matic/document/Icon.cpp +++ b/src/apps/icon-o-matic/document/Icon.cpp @@ -53,7 +53,7 @@ void Icon::ShapeAdded(Shape* shape) { shape->AddObserver(this); - _NotifyAreaInvalidated(shape->Bounds()); + _NotifyAreaInvalidated(shape->Bounds(true)); } // ShapeRemoved @@ -61,7 +61,7 @@ void Icon::ShapeRemoved(Shape* shape) { shape->RemoveObserver(this); - _NotifyAreaInvalidated(shape->Bounds()); + _NotifyAreaInvalidated(shape->Bounds(true)); } // ObjectChanged