mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
Issue #999 - Disable native file picker by default.
This commit is contained in:
parent
4d854945cd
commit
53bfc43dbe
3 changed files with 13 additions and 4 deletions
|
|
@ -4020,6 +4020,12 @@ pref("autocomplete.ungrab_during_mode_switch", true);
|
|||
// toggling to use the XUL filepicker
|
||||
pref("ui.allow_platform_file_picker", true);
|
||||
|
||||
// Allow for using the native GTK file picker. If the application is not run
|
||||
// with GTK_USE_PORTAL=1 this pref has no effect.
|
||||
#ifdef MOZ_WIDGET_GTK
|
||||
pref("widget.allow-gtk-native-file-chooser", false);
|
||||
#endif
|
||||
|
||||
pref("helpers.global_mime_types_file", "/etc/mime.types");
|
||||
pref("helpers.global_mailcap_file", "/etc/mailcap");
|
||||
pref("helpers.private_mime_types_file", "~/.mime.types");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue