we still want to update channel count if we only have one channel

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-12-17 12:48:17 -05:00
parent 6dda84e4ff
commit 011d50928c
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ _window_channel_count_update(Channel *chl)
int missed = 0, cnt = 0, chl_cnt = 0, n = 0;
n = eina_list_count(_win->channels);
if (n <= 1) return;
if (n < 1) return;
EINA_LIST_FOREACH(_win->channels, l, pchl)
{