Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2007-01-16 20:36:26 +0000
committerMichael Valenta2007-01-16 20:36:26 +0000
commit1fbedf6c312051f7d27520aa5525bfb7d834c004 (patch)
tree163f75495cc02758459e5c0da4fd66146758d665
parentfb705af8f4e36b111e1a8e3a3a601ee62a7ce7f9 (diff)
downloadeclipse.platform.team-1fbedf6c312051f7d27520aa5525bfb7d834c004.tar.gz
eclipse.platform.team-1fbedf6c312051f7d27520aa5525bfb7d834c004.tar.xz
eclipse.platform.team-1fbedf6c312051f7d27520aa5525bfb7d834c004.zip
Bug 49892 [History View] Can't select words by doubleclick in CVS Resource History Comment Viewer
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryPage.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryPage.java
index 06e661b82..e142e14d7 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryPage.java
@@ -204,6 +204,10 @@ public class CVSHistoryPage extends HistoryPage implements IAdaptable, IHistoryC
copyAction.update();
}
});
+ result.setTextDoubleClickStrategy(
+ new DefaultTextDoubleClickStrategy(),
+ IDocument.DEFAULT_CONTENT_TYPE);
+ result.activatePlugins();
return result;
}

Back to the top