diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2013-10-27 11:30:00 +0100 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2013-10-27 11:30:00 +0100 |
commit | a8196e6e70f860172795c5f09f66e51f3a7080bf (patch) | |
tree | d3c30942ff28688257bacc806ea3c4656d630076 /plugins | |
parent | 918507d390cae1badb168bee2a196a60d2d424e3 (diff) |
shxui: fixed adding actions without player restart
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/shellexecui/shellexecui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/shellexecui/shellexecui.c b/plugins/shellexecui/shellexecui.c index ffe64b3a..7cfd2155 100644 --- a/plugins/shellexecui/shellexecui.c +++ b/plugins/shellexecui/shellexecui.c @@ -299,7 +299,7 @@ on_edit_ok_button_clicked (GtkButton *button, gpointer user_data) { active = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(lookup_widget(edit_dlg, "common_check"))); flags = (flags & ~DB_ACTION_COMMON) | (active?DB_ACTION_COMMON:0); - current_action->parent.flags = flags; + current_action->parent.flags = flags | DB_ACTION_ADD_MENU; current_action->shx_flags = shx_flags; gtk_list_store_set(GTK_LIST_STORE(treemodel), &iter, |