- Smyrna bounding box computation has been corrected. There was a regression in
4.0.0 that resulted in a degenerate bounding box being computed for any input
graph. See #2279 for details.
-- Smyrna warnings about the `on_attrRB0_clicked` handler being not found have
- been fixed and the button to which it is wired should be functional again.
- This was a regression in 2.50.0. See #2279 for details.
+- Smyrna warnings about the `on_attrRB0_clicked` and `on_attrSearchBtn_clicked`
+ handlers being not found have been fixed and the buttons to which they are
+ wired should be functional again. This was a regression in 2.50.0 See #2279
+ for details.
## [6.0.1] – 2022-09-11
free(argv);
set_header_text();
}
+
+_BB void on_attrSearchBtn_clicked(GtkWidget * widget, gpointer user_data)
+{
+
+ char *attr =
+ (char *) gtk_entry_get_text((GtkEntry *)
+ glade_xml_get_widget(xml, "txtAttr"));
+ char *regex_str =
+ (char *) gtk_entry_get_text((GtkEntry *)
+ glade_xml_get_widget(xml, "txtValue"));
+ gvpr_select(attr, regex_str, get_object_type());
+
+}
_BB void on_txtAttr_changed(GtkWidget * widget, gpointer user_data);
_BB void on_attrApplyBtn_clicked (GtkWidget * widget, gpointer user_data);
_BB void on_attrAddBtn_clicked (GtkWidget * widget, gpointer user_data);
+_BB void on_attrSearchBtn_clicked (GtkWidget * widget, gpointer user_data);
extern attr_list* load_attr_list(Agraph_t* g);
extern void showAttrsWidget(topview* t);