mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Unassigned Result value in creating context menu. Issue [0000457].
This commit is contained in:
parent
83cc3a389c
commit
bf29325ec3
1 changed files with 2 additions and 2 deletions
|
|
@ -331,9 +331,9 @@ begin
|
|||
|
||||
DesktopEntries := GetDesktopEntries(FileNames);
|
||||
|
||||
if Assigned(DesktopEntries) and (DesktopEntries.Count > 0) then
|
||||
Result := Assigned(DesktopEntries) and (DesktopEntries.Count > 0);
|
||||
if Result then
|
||||
begin
|
||||
Result := True;
|
||||
miOpenWith := TMenuItem.Create(Self);
|
||||
miOpenWith.Caption := rsMnuOpenWith;
|
||||
Self.Items.Add(miOpenWith);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue