-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patch/Bug fix for ContextMenuMouseListener Actions #161
Conversation
tasks.jacocoTestReport { | ||
dependsOn(tasks.test) // tests are required to run before generating the report | ||
reports { | ||
xml.required.set(false) | ||
csv.required.set(false) | ||
html.outputLocation.set(file("${layout.buildDirectory}/jacocoHtml")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes (at least on windows) this build output during gradle test/testAll
// Use CompletableFuture to run setup() asynchronously | ||
CompletableFuture<Void> setupFuture = CompletableFuture.runAsync(() -> { | ||
try { | ||
ripper.setup(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test unit would take forever, and still fail on my machine. I didn't want to modify any behaviors other than just giving up after X time.
Category
This change is exactly one of the following (please change
[ ]
to[x]
) to indicate which:Description
Fixes issue with copy/pasting. Fixes right click context menu. Fixes pasting >96 characters and the UI growing to that size.
FYI: I've never touched any of these libraries before so this is mostly googling/etc for the last few hours. I probably need to fix the junits (they run but I am not 100% convinced they do what I actually want).
My Branch
Main
Testing
Required verification:
mvn test
(there are no new failures or errors). -> gradle test, maven isn't used (Unless I am blind)Optional but recommended: