diff options
author | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-13 23:28:21 +0400 |
---|---|---|
committer | Vasily_Makarov <danilka.pro@gmail.com> | 2011-06-13 23:28:21 +0400 |
commit | 58178671d0d219b337cd7a6195a6d1d9e5c05407 (patch) | |
tree | abf64ca5a27bbae1ab5c9da4fcaabef01e04ea9c /saedit/main.c | |
parent | 43a507fb1e2f0ce589546bf24ae2f2667f01a719 (diff) | |
download | evol-tools-58178671d0d219b337cd7a6195a6d1d9e5c05407.tar.gz evol-tools-58178671d0d219b337cd7a6195a6d1d9e5c05407.tar.bz2 evol-tools-58178671d0d219b337cd7a6195a6d1d9e5c05407.tar.xz evol-tools-58178671d0d219b337cd7a6195a6d1d9e5c05407.zip |
saedit: Fix player imageset bug
Diffstat (limited to 'saedit/main.c')
-rw-r--r-- | saedit/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saedit/main.c b/saedit/main.c index e069f78..769b55f 100644 --- a/saedit/main.c +++ b/saedit/main.c @@ -407,9 +407,9 @@ gboolean set_up_action_by_name(const gchar *name, SAEInfo *sae_info) { } void actions_combo_box_changed_handler(GtkComboBox *widget, gpointer user_data) { - set_up_action_by_name(gtk_combo_box_get_active_text(widget), gen_sae_info); if (player != NULL) set_up_action_by_name(gtk_combo_box_get_active_text(widget), player); + set_up_action_by_name(gtk_combo_box_get_active_text(widget), gen_sae_info); } void animations_combo_box_changed_handler(GtkComboBox *widget, gpointer user_data) { |