diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index d423d3d9d..ce1e11e78 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -78,7 +78,7 @@ bool sortById (const CChannelEvent& a, const CChannelEvent& b) inline bool sortByDescription (const CChannelEvent& a, const CChannelEvent& b) { if(a.description == b.description) - return a.eventID < b.eventID; + return a.startTime < b.startTime; else return a.description < b.description ; }