Apply database and table filter on a new connection. Fixes issue #3353.

This commit is contained in:
Ansgar Becker
2013-10-02 17:50:47 +00:00
parent 6fa785c65c
commit 087cf72a9c

View File

@@ -3442,6 +3442,12 @@ begin
);
end;
// Tree node filtering needs a hit in special cases, e.g. after a db was dropped
if editDatabaseFilter.Text <> '' then
editDatabaseFilter.OnChange(editDatabaseFilter);
if editTableFilter.Text <> '' then
editTableFilter.OnChange(editTableFilter);
end;
StoreLastSessions;
ShowStatusMsg;