summaryrefslogtreecommitdiff
path: root/gtk/gtkfilechooser.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-11-17 09:02:29 -0500
committerMatthias Clasen <mclasen@redhat.com>2016-11-17 09:02:29 -0500
commit0bc79910e03b69279d0aee8edf76ae5cae63ff65 (patch)
tree7da431e0d1d3572d82d664ddb1884d7224d6def9 /gtk/gtkfilechooser.c
parent77aa562415829a59003ec2f9e52589f919cd7211 (diff)
downloadgtk+-0bc79910e03b69279d0aee8edf76ae5cae63ff65.tar.gz
GtkFileChooser: Make local-only default to FALSE
There is no good reason anymore to default to TRUE, and this default only makes applications miss out on useful functionality.
Diffstat (limited to 'gtk/gtkfilechooser.c')
-rw-r--r--gtk/gtkfilechooser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfilechooser.c b/gtk/gtkfilechooser.c
index 0a27b9ce4c..35de3b3c28 100644
--- a/gtk/gtkfilechooser.c
+++ b/gtk/gtkfilechooser.c
@@ -387,7 +387,7 @@ gtk_file_chooser_default_init (GtkFileChooserInterface *iface)
g_param_spec_boolean ("local-only",
P_("Local Only"),
P_("Whether the selected file(s) should be limited to local file: URLs"),
- TRUE,
+ FALSE,
GTK_PARAM_READWRITE));
g_object_interface_install_property (iface,
g_param_spec_object ("preview-widget",