From f871c6f73716178338a9e9e696320b6b204b7e2f Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 9 Nov 2008 22:04:51 +0000 Subject: [PATCH] Reset the drawing state to that of the client view after we finish drawing the workspaces replicant. This fixes artifacts like fonts occasionally appearing tiny when selecting/deselecting items on the Desktop if the Workspaces replicant was also embedded. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28585 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/WorkspacesView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/servers/app/WorkspacesView.cpp b/src/servers/app/WorkspacesView.cpp index 893b162197..24698088d7 100644 --- a/src/servers/app/WorkspacesView.cpp +++ b/src/servers/app/WorkspacesView.cpp @@ -394,6 +394,7 @@ WorkspacesView::Draw(DrawingEngine* drawingEngine, BRegion* effectiveClipping, for (int32 i = rows * columns; i-- > 0;) { _DrawWorkspace(drawingEngine, redraw, i); } + fWindow->ServerWindow()->ResyncDrawState(); }