- registerTool only when autorefresh is enable.
This commit is contained in:
parent
0d2732fa89
commit
7cd0c3337c
|
@ -86,8 +86,6 @@ void on_wtools_1_IOregs_show (GtkWidget *widget, gpointer user_data) {
|
||||||
|
|
||||||
// do as if we had selected this button and ARM7 cpu
|
// do as if we had selected this button and ARM7 cpu
|
||||||
gtk_combo_box_set_active((GtkComboBox*)combo, 0);
|
gtk_combo_box_set_active((GtkComboBox*)combo, 0);
|
||||||
|
|
||||||
register_Tool(wtools_1_update);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean on_wtools_1_IOregs_close (GtkWidget *widget, ...) {
|
gboolean on_wtools_1_IOregs_close (GtkWidget *widget, ...) {
|
||||||
|
@ -102,11 +100,13 @@ void on_wtools_1_autorefresh_toggled (GtkToggleButton *tb, gpointer user_data)
|
||||||
if( gtk_toggle_button_get_active(tb) == TRUE )
|
if( gtk_toggle_button_get_active(tb) == TRUE )
|
||||||
{
|
{
|
||||||
autorefresh = TRUE;
|
autorefresh = TRUE;
|
||||||
|
register_Tool(wtools_1_update);
|
||||||
gtk_widget_set_sensitive( b, FALSE );
|
gtk_widget_set_sensitive( b, FALSE );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
autorefresh = FALSE;
|
autorefresh = FALSE;
|
||||||
|
unregister_Tool(wtools_1_update);
|
||||||
gtk_widget_set_sensitive( b, TRUE );
|
gtk_widget_set_sensitive( b, TRUE );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue