remove useless printf()
This commit is contained in:
parent
f217cc3e09
commit
dfcfa92994
2
layout.c
2
layout.c
|
@ -190,9 +190,7 @@ uicb_setlayout(awesome_config * awesomeconf,
|
|||
/* compute current index */
|
||||
for(i = 0; i < awesomeconf->nlayouts &&
|
||||
&awesomeconf->layouts[i] != get_current_layout(awesomeconf->tags, awesomeconf->ntags); i++);
|
||||
printf("current i %d\n", i);
|
||||
i = compute_new_value_from_arg(arg, (double) i);
|
||||
printf("next i %d\n", i);
|
||||
if(i >= awesomeconf->nlayouts)
|
||||
i = 0;
|
||||
else if(i < 0)
|
||||
|
|
Loading…
Reference in New Issue