]> granicus.if.org Git - graphviz/commitdiff
fix: Revert "smyrna: remove unused 'on_attrRB0_clicked'"
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Sep 2022 01:10:52 +0000 (18:10 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 25 Sep 2022 20:25:40 +0000 (13:25 -0700)
This reverts commit 856ca708006635f9917acb702916b1af476fc69a. This function _is_
used (in share/gui/smyrna.glade). It is unclear why
856ca708006635f9917acb702916b1af476fc69a claimed it was not.

Gitlab: #2279
Reported-by: Gagan Sidhu <gagan@g-a.ca>
CHANGELOG.md
cmd/smyrna/gui/frmobjectui.c

index 4e24adad414fa548ad9036f173f56beae97ec713..294d7aaf3574f1b95cae81ab4b843584aad58f37 100644 (file)
@@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - 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.
 
 ## [6.0.1] – 2022-09-11
 
index 3299b52bb2f689b8f361c1c2089eb5ca36f30187..0eaa874963fc28c804aada1b048b30ddc46f6584 100644 (file)
@@ -499,6 +499,16 @@ _BB void on_attrApplyBtn_clicked(GtkWidget * widget, gpointer user_data)
     doApply();
 }
 
+_BB void on_attrRB0_clicked(GtkWidget * widget, gpointer user_data)
+{
+    filter_attributes((char *)
+                     gtk_entry_get_text((GtkEntry *)
+                                        glade_xml_get_widget(xml,
+                                                             "txtAttr")),
+                     view->Topview);
+
+}
+
 /* This is the action attached to the publish button on the attributes
  * window. What should happen?
  */