bug 298271: Disable quadruple-click paragraph selection since it's broken to the point of being useless. Patch by Uri Bernstein <uriber@gmail.com>. r+sr=roc a=brendan
git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@178649 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1587,9 +1587,12 @@ nsFrame::HandleMultiplePress(nsPresContext* aPresContext,
|
||||
nsMouseEvent *me = (nsMouseEvent *)aEvent;
|
||||
if (!me) return NS_OK;
|
||||
|
||||
#if 0 // Paragraph selection is currently broken - so disable it
|
||||
if (me->clickCount == 4)
|
||||
selectPara = PR_TRUE;
|
||||
else if (me->clickCount == 3)
|
||||
else
|
||||
#endif
|
||||
if (me->clickCount == 3)
|
||||
{
|
||||
selectPara =
|
||||
nsContentUtils::GetBoolPref("browser.triple_click_selects_paragraph");
|
||||
|
||||
Reference in New Issue
Block a user