diff --git a/mozilla/layout/generic/nsFrame.cpp b/mozilla/layout/generic/nsFrame.cpp index 42b553ed0f3..2f09d3fe6ab 100644 --- a/mozilla/layout/generic/nsFrame.cpp +++ b/mozilla/layout/generic/nsFrame.cpp @@ -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");