Remove one level of indentation #1465
This commit is contained in:
parent
20dc3271a7
commit
bf0e8c2862
|
@ -520,7 +520,10 @@ void child_click_events_key(const char *key) {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void send_block_clicked(int button, const char *name, const char *instance, int x, int y) {
|
void send_block_clicked(int button, const char *name, const char *instance, int x, int y) {
|
||||||
if (child.click_events) {
|
if (!child.click_events) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
child_click_events_initialize();
|
child_click_events_initialize();
|
||||||
|
|
||||||
yajl_gen_map_open(gen);
|
yajl_gen_map_open(gen);
|
||||||
|
@ -546,7 +549,6 @@ void send_block_clicked(int button, const char *name, const char *instance, int
|
||||||
|
|
||||||
yajl_gen_map_close(gen);
|
yajl_gen_map_close(gen);
|
||||||
child_write_output();
|
child_write_output();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue