diff options
author | Thomas White <taw@physics.org> | 2021-07-14 15:58:40 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-07-14 15:58:40 +0200 |
commit | 6fd02d7cefd6f6f61e623c26525a941c1e0b3e59 (patch) | |
tree | ad625b31e837047e7405ec0ac0e4f66e19052f03 /src/gtk-util-routines.c | |
parent | 6b98d433c6e461f5c351f8ed6dec84da21d45870 (diff) |
Add get_combo_id
Diffstat (limited to 'src/gtk-util-routines.c')
-rw-r--r-- | src/gtk-util-routines.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gtk-util-routines.c b/src/gtk-util-routines.c index 4e622060..ca39d861 100644 --- a/src/gtk-util-routines.c +++ b/src/gtk-util-routines.c @@ -135,6 +135,12 @@ void set_combo_id(GtkWidget *cb, const char *id) } +const char *get_combo_id(GtkWidget *cb) +{ + return gtk_combo_box_get_active_id(GTK_COMBO_BOX(cb)); +} + + void redraw_widget(GtkWidget *wid) { gint w, h; |