We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
app
1 parent ed43ff3 commit bb25108Copy full SHA for bb25108
.changes/app-show-hide.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-utils": "patch"
3
4
+
5
+Fix `allowlist > app > show/hide` always disabled when `allowlist > app > all: false`.
core/tauri-utils/src/config.rs
@@ -2147,6 +2147,7 @@ impl Allowlist for AllowlistConfig {
2147
features.extend(self.protocol.to_features());
2148
features.extend(self.process.to_features());
2149
features.extend(self.clipboard.to_features());
2150
+ features.extend(self.app.to_features());
2151
features
2152
}
2153
0 commit comments