mirror of https://gitlab.com/basile.b/dexed.git
fix, not possible to clear searches results
This commit is contained in:
parent
18353e235a
commit
d188b98f0a
|
@ -1,3 +1,9 @@
|
||||||
|
# v3.9.9-dev
|
||||||
|
|
||||||
|
## Bugs fixed
|
||||||
|
|
||||||
|
- Messages, when selected, the recently added _Search Results_ category could not be emptied.
|
||||||
|
|
||||||
# v3.9.8
|
# v3.9.8
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
|
@ -778,7 +778,7 @@ end;
|
||||||
procedure TMessagesWidget.actClearCurCatExecute(Sender: TObject);
|
procedure TMessagesWidget.actClearCurCatExecute(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
case fCtxt of
|
case fCtxt of
|
||||||
amcAll, amcApp, amcMisc :
|
amcAll, amcApp, amcMisc, amcSearch:
|
||||||
clearbyContext(fCtxt);
|
clearbyContext(fCtxt);
|
||||||
amcEdit: if fDoc.isAssigned then
|
amcEdit: if fDoc.isAssigned then
|
||||||
clearbyData(fDoc);
|
clearbyData(fDoc);
|
||||||
|
|
Loading…
Reference in New Issue