From 0e76c21674a0088fcd6e626def1ce6d058068e55 Mon Sep 17 00:00:00 2001 From: Casey Reas Date: Fri, 12 Jun 2020 11:56:31 -0700 Subject: [PATCH 1/4] Add Sponsor button to repository --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000000..f8c6bc52bc --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: processing From 4236cd3e08b1faad4672dc7146918a757a0f1709 Mon Sep 17 00:00:00 2001 From: Casey Reas Date: Fri, 12 Jun 2020 12:16:44 -0700 Subject: [PATCH 2/4] Update FUNDING.yml --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index f8c6bc52bc..2cf28e94b0 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ github: processing +custom: https://processingfoundation.org/support From 3cd8898bad371ba1359daa2b4a5bba00a954ed56 Mon Sep 17 00:00:00 2001 From: Casey Reas Date: Fri, 12 Jun 2020 15:09:40 -0700 Subject: [PATCH 3/4] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 2cf28e94b0..93c4b27b4f 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,2 @@ github: processing -custom: https://processingfoundation.org/support +custom: https://processingfoundation.org/ From d86a218509a5eb64d8056f2efa08b7e10bd9abfb Mon Sep 17 00:00:00 2001 From: A Pottinger Date: Wed, 1 Jul 2020 14:54:36 -0700 Subject: [PATCH 4/4] Changed visibility to private for new method. --- app/src/processing/app/syntax/JEditTextArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/syntax/JEditTextArea.java b/app/src/processing/app/syntax/JEditTextArea.java index fd3e2c861f..3a490002dd 100644 --- a/app/src/processing/app/syntax/JEditTextArea.java +++ b/app/src/processing/app/syntax/JEditTextArea.java @@ -1216,7 +1216,7 @@ public final void selectAll() * Selects all text in the given line. * @param line The line number to select all text in it. */ - public final void selectLine(final int line) + private final void selectLine(final int line) { selectLine = true; final int lineStart = getLineStartOffset(line);