From ccd1d2bc5bb7d11ec3b028ef90e1e535a3eec18c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 3 Nov 2025 13:01:21 -0700 Subject: [PATCH] Revert "GtkFileChooserButton should emit a signal when a file is selected from the combobox" This reverts commit 1c19b6cfd9ada08dbdc16c8c546fcd74e09a42ec. GtkFileChooserButton emits selection-changed when the combobox is used to select a file/dir. --- libs/tk/ytk/gtkfilechooserbutton.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libs/tk/ytk/gtkfilechooserbutton.c b/libs/tk/ytk/gtkfilechooserbutton.c index dfa0c9f574..2971181fe8 100644 --- a/libs/tk/ytk/gtkfilechooserbutton.c +++ b/libs/tk/ytk/gtkfilechooserbutton.c @@ -614,11 +614,8 @@ gtk_file_chooser_button_select_file (GtkFileChooser *chooser, update_label_and_image (button); update_combo_box (button); - if (priv->active) { + if (priv->active) gtk_file_chooser_select_file (GTK_FILE_CHOOSER (priv->dialog), file, NULL); - } else { - g_signal_emit (button, file_chooser_button_signals[FILE_SET], 0); - } return TRUE; }