[nautilus/wip/coreyberla/app-chooser-fixes: 2/9] app-chooser: Don't allow changing default on a folder
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/coreyberla/app-chooser-fixes: 2/9] app-chooser: Don't allow changing default on a folder
- Date: Mon, 8 Aug 2022 21:23:15 +0000 (UTC)
commit 48cebbddfea76dc32b1a4a1fb7fb689e6d625646
Author: Corey Berla <corey berla me>
Date: Sun Aug 7 21:07:04 2022 -0700
app-chooser: Don't allow changing default on a folder
Nautilus opens folders natively regardless of the default file type.
Don't allow users to change the default association for a folder
which would otherwise give a false impression.
Fixes: https://gitlab.gnome.org/GNOME/nautilus/-/issues/2413
src/nautilus-app-chooser.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-app-chooser.c b/src/nautilus-app-chooser.c
index ca9c62ea8..8e2b0f09a 100644
--- a/src/nautilus-app-chooser.c
+++ b/src/nautilus-app-chooser.c
@@ -147,6 +147,12 @@ nautilus_app_chooser_init (NautilusAppChooser *self)
gtk_widget_set_name (GTK_WIDGET (self), "NautilusAppChooser");
}
+static gboolean
+content_type_is_folder (NautilusAppChooser *self)
+{
+ return g_strcmp0 (self->content_type, "inode/directory") == 0;
+}
+
static void
nautilus_app_chooser_constructed (GObject *object)
{
@@ -191,7 +197,7 @@ nautilus_app_chooser_constructed (GObject *object)
{
title = _("Open Items");
}
- else if (g_strcmp0 (self->content_type, "inode/directory") == 0)
+ else if (content_type_is_folder (self))
{
title = _("Open Folder");
}
@@ -203,7 +209,7 @@ nautilus_app_chooser_constructed (GObject *object)
gtk_header_bar_set_title_widget (GTK_HEADER_BAR (gtk_dialog_get_header_bar (GTK_DIALOG (self))),
adw_window_title_new (title, NULL));
- if (self->single_content_type)
+ if (self->single_content_type && !content_type_is_folder (self))
{
content_type_description = g_content_type_get_description (self->content_type);
gtk_label_set_label (GTK_LABEL (self->label_content_type_description), content_type_description);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]