Skip to content

Commit a6d7d62

Browse files
committed
Merge branch 'fix/852'
2 parents af8812c + 1a01f8d commit a6d7d62

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ may want to subscribe to `GitHub's tag feed
1313
2019-03-30
1414

1515
* FIX error with the new color priority system and `discover` calendar type
16+
* FIX search results in ikhal are ordered, same as in `khal search`
1617

1718
0.10.0
1819
======

khal/ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ def search(self):
11201120
def _search(self, search_term):
11211121
"""search for events matching `search_term"""
11221122
self.window.backtrack()
1123-
events = list(self.collection.search(search_term))
1123+
events = sorted(self.collection.search(search_term))
11241124
event_list = []
11251125
event_list.extend([
11261126
urwid.AttrMap(

0 commit comments

Comments
 (0)