From 4cc05f8e10ba3a16715d5d2c2b447f7388c01215 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Sun, 9 May 2010 04:07:44 +0000 Subject: [PATCH] Fix #5834 as proposed by kallisti5. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36770 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/touchpad/TouchpadPrefView.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/preferences/touchpad/TouchpadPrefView.cpp b/src/preferences/touchpad/TouchpadPrefView.cpp index 8ae5bf5296..9854a9f34d 100644 --- a/src/preferences/touchpad/TouchpadPrefView.cpp +++ b/src/preferences/touchpad/TouchpadPrefView.cpp @@ -95,8 +95,9 @@ TouchpadView::MouseUp(BPoint point) int32 result = 0; if (GetRightScrollRatio() > 0.7 || GetBottomScrollRatio() > 0.7) { BAlert* alert = new BAlert("ReallyChangeScrollArea", - "The new scroll area is very small. Do you really want to change " - "it?", "OK", "Cancel", NULL, B_WIDTH_AS_USUAL, + "The new scroll area is very large and may impede " + "normal mouse operation. Do you really want to change" + " it?", "OK", "Cancel", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); result = alert->Go(); }