From 4d9ffa5ff987b103f747e7770e617359b48e0e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sundstr=C3=B6m?= Date: Fri, 15 Apr 2011 00:01:56 +0000 Subject: [PATCH] Set view non-editable. (The cursor would show up and blink if one clicked the text view.) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41255 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/overlayimage/OverlayView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apps/overlayimage/OverlayView.cpp b/src/apps/overlayimage/OverlayView.cpp index c7bdda35be..5b9ff38237 100644 --- a/src/apps/overlayimage/OverlayView.cpp +++ b/src/apps/overlayimage/OverlayView.cpp @@ -49,6 +49,7 @@ OverlayView::OverlayView(BRect frame) "Drag the replicant to the Desktop."); fText->SetText(text); fText->SetAlignment(B_ALIGN_CENTER); + fText->MakeEditable(false); fText->MakeSelectable(false); fText->MoveBy(0, (Bounds().bottom - fText->TextRect().bottom) / 2); }