From ae399b094bffadfcc00d1df70c51f69831734ba3 Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Tue, 27 Oct 2009 05:36:26 +0000 Subject: [PATCH] RAD-61: Search places does not clear list of a new search, or switching pages git-svn-id: https://radegast.googlecode.com/svn/trunk@378 f7a694da-4d33-11de-9ad6-1127a62b9fcd --- Radegast/GUI/Consoles/SearchConsole.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Radegast/GUI/Consoles/SearchConsole.cs b/Radegast/GUI/Consoles/SearchConsole.cs index 7379676..7f199ac 100644 --- a/Radegast/GUI/Consoles/SearchConsole.cs +++ b/Radegast/GUI/Consoles/SearchConsole.cs @@ -265,6 +265,7 @@ namespace Radegast { placeMatches = 0; placeStart = 0; + lvwPlaces.Items.Clear(); placeSearch = client.Directory.StartDirPlacesSearch(txtSearchPlace.Text.Trim(), 0); } @@ -272,6 +273,7 @@ namespace Radegast { placeMatches = 0; placeStart += 100; + lvwPlaces.Items.Clear(); placeSearch = client.Directory.StartDirPlacesSearch(txtSearchPlace.Text.Trim(), placeStart); } @@ -279,6 +281,7 @@ namespace Radegast { placeMatches = 0; placeStart -= 100; + lvwPlaces.Items.Clear(); placeSearch = client.Directory.StartDirPlacesSearch(txtSearchPlace.Text.Trim(), placeStart); } -- 2.11.0