Skip to content

Commit

Permalink
#26708 Hide .project and .settings folder only in standalone app (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
E1izabeth committed May 23, 2024
1 parent 8b81992 commit d547b42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public int visit(Bucket.Entry entry) {
}

public void hideConfigurationFiles() {
if (project.isOpen()) {
if (project.isOpen() && DBWorkbench.getPlatform().getApplication().isStandalone()) {
// To avoid accidental corruption of the workspace configuration by search/replace commands,
// we need to mark metadata folder as hidden (see dbeaver/dbeaver#20759)
IFolder metadataFolder = project.getFolder(DBPProject.METADATA_FOLDER);
Expand Down

0 comments on commit d547b42

Please sign in to comment.