diff --git a/.changes/app-show-hide.md b/.changes/app-show-hide.md new file mode 100644 index 000000000..261dc722a --- /dev/null +++ b/.changes/app-show-hide.md @@ -0,0 +1,5 @@ +--- +"tauri-utils": "patch" +--- + +Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`. diff --git a/core/tauri-utils/src/config.rs b/core/tauri-utils/src/config.rs index 0a2e8d1ba..906de01dc 100644 --- a/core/tauri-utils/src/config.rs +++ b/core/tauri-utils/src/config.rs @@ -2147,6 +2147,7 @@ impl Allowlist for AllowlistConfig { features.extend(self.protocol.to_features()); features.extend(self.process.to_features()); features.extend(self.clipboard.to_features()); + features.extend(self.app.to_features()); features } }