From f8df64351263ced3b369a03b93ac2a1644f56678 Mon Sep 17 00:00:00 2001 From: wangxiaoqing Date: Thu, 28 Jul 2022 08:57:36 +0800 Subject: [PATCH 2/4] Let the location bar background change with theme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 让位置栏背景和主题一起变化, 修复切换为浅色主题后文件管理器位置栏仍为黑色 Related #I5I8V9 Signed-off-by: wangxiaoqing --- src/caja-navigation-window-pane.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/caja-navigation-window-pane.c b/src/caja-navigation-window-pane.c index 29018b5..019162c 100644 --- a/src/caja-navigation-window-pane.c +++ b/src/caja-navigation-window-pane.c @@ -58,9 +58,6 @@ real_set_active (CajaWindowPane *pane, gboolean is_active) gtk_widget_set_sensitive (gtk_bin_get_child (GTK_BIN (caja_path_bar_get_button_from_button_list_entry (l->data))), is_active); } - /* navigation bar (manual entry) */ - caja_location_bar_set_active (CAJA_LOCATION_BAR (nav_pane->navigation_bar), is_active); - /* location button */ gtk_widget_set_sensitive (gtk_bin_get_child (GTK_BIN (nav_pane->location_button)), is_active); } -- 2.36.1