Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5957 → Rev 5958

/programs/cmm/lib/list_box.h
215,6 → 215,7
if (count <= visible) return KeyHome();
if (first == 0) return 0;
first -= visible;
cur_y = first;
CheckDoesValuesOkey();
return 1;
}
224,6 → 225,7
if (count <= visible) return KeyEnd();
if (first == count - visible) return 0;
first += visible;
cur_y = first + visible - 1;
CheckDoesValuesOkey();
return 1;
}