Skip to content

Commit 7bca465

Browse files
author
emmanue1
committed
Merge remote-tracking branch 'origin/master'
2 parents 34afc1b + b925383 commit 7bca465

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ task proguard(type: proguard.gradle.ProGuardTask, dependsOn: 'jar') {
105105
injars jar.archivePath
106106
outjars 'build/libs/' + project.name + '-' + project.version + '-min.jar'
107107
libraryjars System.getProperty('java.home') + '/lib/rt.jar'
108+
libraryjars System.getProperty('java.home') + '/jmods/'
108109
}
109110

110111
// Java executable wrapper for Windows //

services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'java'
22

33
dependencies {
4-
compile 'com.fifesoft:rsyntaxtextarea:2.5.6'
4+
compile 'com.fifesoft:rsyntaxtextarea:3.0.4'
55
compile 'org.ow2.asm:asm:7.1'
66
compile 'org.jd:jd-core:' + parent.jdCoreVersion
77
compile project(':api')

services/src/main/java/org/jd/gui/view/component/TextPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void copy() {
2727
if (textArea.getSelectionStart() == textArea.getSelectionEnd()) {
2828
getToolkit().getSystemClipboard().setContents(new StringSelection(""), null);
2929
} else {
30-
textArea.copyAsRtf();
30+
textArea.copyAsStyledText();
3131
}
3232
}
3333

0 commit comments

Comments
 (0)