static gboolean encoder_bottom_cb(GtkWidget *widget, GdkEvent *event, gpointer data) {
int en=GPOINTER_TO_INT(data);
- int action=action_dialog(top_window,CONTROLLER_ENCODER,encoders[en].bottom_encoder_function);
+ int action=action_dialog(dialog,CONTROLLER_ENCODER,encoders[en].bottom_encoder_function);
gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str);
encoders[en].bottom_encoder_function=action;
return TRUE;
static gboolean switch_cb(GtkWidget *widget, GdkEvent *event, gpointer data) {
int sw=GPOINTER_TO_INT(data);
- int action=action_dialog(top_window,CONTROLLER_SWITCH,temp_switches[sw].switch_function);
+ int action=action_dialog(dialog,CONTROLLER_SWITCH,temp_switches[sw].switch_function);
gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str);
temp_switches[sw].switch_function=action;
update_toolbar_labels();
static gboolean switch_cb(GtkWidget *widget, GdkEvent *event, gpointer data) {
int sw=GPOINTER_TO_INT(data);
- int action=action_dialog(top_window,CONTROLLER_SWITCH,temp_switches[sw].switch_function);
+ int action=action_dialog(dialog,CONTROLLER_SWITCH,temp_switches[sw].switch_function);
gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str);
temp_switches[sw].switch_function=action;
update_toolbar_labels();