diff --git a/mozilla/profile/resources/content/profileManager.js b/mozilla/profile/resources/content/profileManager.js index e95a0ec8799..91535d9cbb4 100644 --- a/mozilla/profile/resources/content/profileManager.js +++ b/mozilla/profile/resources/content/profileManager.js @@ -268,3 +268,12 @@ function HandleKeyEvent( aEvent ) } } +function HandleClickEvent( aEvent ) +{ + if( aEvent.clickCount == 2 ) { + if( aEvent.target.nodeName.toLowerCase() == "treecell" ) + return onStart(); + } + else + return showSelection(aEvent.target.parentNode.parentNode); +} \ No newline at end of file diff --git a/mozilla/profile/resources/content/profileSelection.xul b/mozilla/profile/resources/content/profileSelection.xul index f2f807b22ff..cde39b732a1 100644 --- a/mozilla/profile/resources/content/profileSelection.xul +++ b/mozilla/profile/resources/content/profileSelection.xul @@ -90,7 +90,7 @@