Skip to content

Commit

Permalink
Make start button visible on start menu visible if start button is hi…
Browse files Browse the repository at this point in the history
…dden
  • Loading branch information
vhanla committed Sep 7, 2019
1 parent db1b72b commit deef009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ procedure TForm1.tmrOptionsTimer(Sender: TObject);
except
end;

if mnuStart.Checked then
if mnuStart.Checked or Taskbars.IsStartMenuVisible then
begin
for I := 0 to Taskbars.Count - 1 do
ShowWindow(Taskbars.Items[I].StartButton.Handle, SW_SHOWNOACTIVATE);
Expand Down

0 comments on commit deef009

Please sign in to comment.