summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorben2021-11-20 12:56:18 +0100
committerTorben2021-11-20 12:56:18 +0100
commitc40699001508dbe0a1c5863a5f0ffccc49d920aa (patch)
treee9ce25b0abd8fc57a111e07ce00a2d13d0065e9d
parent29f3f6b0b150e223157006ce62c1491cf544004f (diff)
downloadaur-c40699001508dbe0a1c5863a5f0ffccc49d920aa.tar.gz
Don;t disable native dialogs anymore
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
-rw-r--r--disable_native_dialogs.patch11
3 files changed, 0 insertions, 18 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 123184bf0109..aefdbae5943b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -16,7 +16,6 @@ pkgbase = processing4-git
conflicts = processing
options = !strip
source = https://download.processing.org/reference.zip
- source = disable_native_dialogs.patch
source = disable_update_check.patch
source = fix_theme_engine.patch
source = no_ffmpeg_download.patch
@@ -25,7 +24,6 @@ pkgbase = processing4-git
source = use_system_jdk.patch
source = use_system_libraries.patch
sha256sums = fabe7420a714f450a6b1430f13fc46f14ba52db57af360365c6a7fd96d0b642f
- sha256sums = 500d00811031c0445416b6112972aa1f7a377092dd3b8565d79ead3fdfc62451
sha256sums = 35c4538e6e57c0ea296c6cea590cabeb2b0772f9a431838df270dcc581321e30
sha256sums = 24b8a3e18b6e3a0de9422e4dbde46cceb91385f7ad6bdc89ec0a9614e082c977
sha256sums = b0742db84e6a6b148b56df6d4d1e8a3266461fe0f514f703301a310e99f1d126
diff --git a/PKGBUILD b/PKGBUILD
index c3e6aae88b5c..7b1b35fb163d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,7 +13,6 @@ depends=( 'jdk-openjdk' 'java-openjfx')
makedepends=('ant' 'gendesk' 'unzip')
options=(!strip)
source=('https://download.processing.org/reference.zip'
- disable_native_dialogs.patch
disable_update_check.patch
fix_theme_engine.patch
no_ffmpeg_download.patch
@@ -22,7 +21,6 @@ source=('https://download.processing.org/reference.zip'
use_system_jdk.patch
use_system_libraries.patch)
sha256sums=('fabe7420a714f450a6b1430f13fc46f14ba52db57af360365c6a7fd96d0b642f'
- '500d00811031c0445416b6112972aa1f7a377092dd3b8565d79ead3fdfc62451'
'35c4538e6e57c0ea296c6cea590cabeb2b0772f9a431838df270dcc581321e30'
'24b8a3e18b6e3a0de9422e4dbde46cceb91385f7ad6bdc89ec0a9614e082c977'
'b0742db84e6a6b148b56df6d4d1e8a3266461fe0f514f703301a310e99f1d126'
@@ -64,9 +62,6 @@ prepare() {
# Disable update check in default preferences
patch $pkgname/build/shared/lib/defaults.txt < disable_update_check.patch
-
- # Disable native dialogs in default preferences
- patch $pkgname/build/shared/lib/defaults.txt < disable_native_dialogs.patch
}
build() {
diff --git a/disable_native_dialogs.patch b/disable_native_dialogs.patch
deleted file mode 100644
index 678740dd05b4..000000000000
--- a/disable_native_dialogs.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/build/shared/lib/defaults.txt
-+++ b/build/shared/lib/defaults.txt
-@@ -74,7 +74,7 @@
- recent.count = 10
-
- # Default to the native (AWT) file selector where possible
--chooser.files.native = true
-+chooser.files.native = false
- # We were shutting this off on macOS because it broke Copy/Paste:
- # https://github.com/processing/processing/issues/1035
- # https://github.com/processing/processing4/issues/77