mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-16 03:30:50 +08:00
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:
@ -2011,7 +2011,7 @@ end;
|
|||||||
procedure TMDIChild.MenuRefreshClick(Sender: TObject);
|
procedure TMDIChild.MenuRefreshClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
RefreshActiveDbTableList;
|
RefreshActiveDbTableList;
|
||||||
ShowDBProperties(ActiveDatabase);
|
LoadDatabaseProperties(ActiveDatabase);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user