open /administrator/components/com_easygallery/classes/categories.php
find:
$query = 'SELECT * FROM #__easygallery
WHERE cid = ' . $cid . '
AND state = 1
ORDER BY ordering';
in the last line:
ORDER BY ordering';
change ordering to name if you would like to sort by name:
ORDER BY name';
change ordering to id DESC, if you would like the newest first:
ORDER BY id DESC';