Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lua_nodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ static int subr_nodes_append(lua_State* L)

lua_push_node_ref(L,&node);

ui_update(1);
ui_update();

return 1;
}
Expand Down Expand Up @@ -424,7 +424,7 @@ static int subr_nodes_remove(lua_State* L)
else
lua_pushboolean(L,1);

ui_update(1);
ui_update();
return 1;
}

Expand Down
2 changes: 1 addition & 1 deletion ui/gtk/gui_cardview.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static void menu_run_script_cb(GtkWidget *widget,
ui_set_title(script->script_name);
luax_run_script(script->script_file);
gtk_tree_view_expand_all (GTK_TREE_VIEW(CARDVIEW));
ui_update(0);
ui_update();
}

static void menu_cardview_clear_cb(GtkWidget *w, gpointer user_data)
Expand Down