Skip to content

Commit

Permalink
Open file command does not start in relative to the current file's pa…
Browse files Browse the repository at this point in the history
…th (fix #151668) (#151820)
  • Loading branch information
bpasero authored Jun 11, 2022
1 parent 52d3006 commit ab220b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/platform/dialogs/electron-main/dialogMainService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ export class DialogMainService implements IDialogMainService {
const dialogOptions: OpenDialogOptions = {
title: options.title,
buttonLabel: options.buttonLabel,
filters: options.filters
filters: options.filters,
defaultPath: options.defaultPath
};

// Ensure properties
Expand Down

3 comments on commit ab220b2

@EgSam
Copy link

@EgSam EgSam commented on ab220b2 Sep 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RaghuSpaceRajan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still face this issue as well. Should we re-open the bug?

@EgSam
Copy link

@EgSam EgSam commented on ab220b2 Sep 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think so @RaghuSpaceRajan , I have tried every possible trick, but without success. BTW, I'm using Ubuntu 22.04.4 LTS

Please sign in to comment.