Fix bug: MenuChangeTypeClick called MenuRefreshClick, which called RefreshActiveDbTableList + ShowDBProperties, but not LoadDatabaseProperties.

So, after changing the engine of a table the table status dataset was refreshed but never displayed, until having switched to a different db. So, MenuRefreshClick was loading but not displaying the table status.
This commit is contained in:
Ansgar Becker
2007-09-23 22:36:25 +00:00
parent 76a37d3552
commit 4b2af25072

View File

@ -2011,7 +2011,7 @@ end;
procedure TMDIChild.MenuRefreshClick(Sender: TObject);
begin
RefreshActiveDbTableList;
ShowDBProperties(ActiveDatabase);
LoadDatabaseProperties(ActiveDatabase);
end;