Avoid rendering the tree twice in a row

The callee already renders the tree if necessary, so despite the documentation
of the function, doing it again on the caller side is unnecessary.
This commit is contained in:
Ingo Bürk
2015-12-15 07:21:11 -05:00
parent 954927ccc4
commit 905bca3531
3 changed files with 2 additions and 14 deletions

View File

@ -31,9 +31,5 @@ void handle_key_press(xcb_key_press_event_t *event) {
return;
CommandResult *result = run_binding(bind, NULL);
if (result->needs_tree_render)
tree_render();
command_result_free(result);
}