We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 316deae commit f551371Copy full SHA for f551371
mangadownloader/forms/frmMain.pas
@@ -3540,7 +3540,7 @@ procedure TMainForm.pmFavoritesPopup(Sender: TObject);
3540
miFavoritesEnable.Enabled := iEnable;
3541
miFavoritesDisable.Enabled := iDisable;
3542
miFavoritesTransferWebsite.Enabled := True;
3543
- if vtFavorites.SelectedCount = 1 then
+ if (vtFavorites.SelectedCount = 1) and Assigned(vtFavorites.FocusedNode) then
3544
begin
3545
miFavoritesViewInfos.Enabled := True;
3546
miFavoritesDownloadAll.Enabled := (Trim(FavoriteManager[vtFavorites.FocusedNode^.Index].FavoriteInfo.Link) <> '');
0 commit comments