From 01b179c628cf4e1d3fc065dea1574a23a863bff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Thu, 12 Oct 2023 19:51:06 +0200 Subject: [PATCH] window: Open location entry when current path is clicked Make the location entry visible when the current path is clicked in the path bar. --- src/nautilus-pathbar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nautilus-pathbar.c b/src/nautilus-pathbar.c index e02aeb42be..a93f2896e4 100644 --- a/src/nautilus-pathbar.c +++ b/src/nautilus-pathbar.c @@ -1197,6 +1197,7 @@ make_button_data (NautilusPathBar *self, gtk_widget_add_css_class (button_data->button, "current-dir"); gtk_widget_set_hexpand (button_data->button, TRUE); gtk_widget_set_halign (button_data->label, GTK_ALIGN_START); + gtk_actionable_set_action_name (GTK_ACTIONABLE (button_data->button), "win.enter-location"); } if (button_data->label != NULL) -- GitLab