After moving the search bar in the Customize Toolbar dialog, it will no longer do anything when typing in the entry. Possibly related to this code: ```c static void geany_entry_action_connect_proxy(GtkAction *action, GtkWidget *widget) { GeanyEntryActionPrivate *priv = GEANY_ENTRY_ACTION_GET_PRIVATE(action);
/* make sure not to connect handlers twice */ if (! priv->connected) if (priv->numeric) g_signal_connect(priv->entry, "insert-text", G_CALLBACK(ui_editable_insert_text_callback), NULL); g_signal_connect(priv->entry, "changed", G_CALLBACK(delegate_entry_changed_cb), action); g_signal_connect(priv->entry, "activate", G_CALLBACK(delegate_entry_activate_cb), action); g_signal_connect(priv->entry, "activate-backward", G_CALLBACK(delegate_entry_activate_backward_cb), action);
priv->connected = TRUE; } ```
yay for a 12-years old issue :) b0b0ebb469a6b7eb74d321e6f5d7fe6f0bfcf6ba
Closed #3831 as completed via #3838.
github-comments@lists.geany.org