Skip to content

Commit

Permalink
Use openFolder on Windows and Linux (fixes #18859)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrmarti committed Jan 20, 2017
1 parent 189045a commit a9777e8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,18 @@
.monaco-workbench > .part.editor > .content .welcomePage.max-height-690px .title {
display: none;
}

.monaco-workbench > .part.editor > .content .welcomePage .mac-only,
.monaco-workbench > .part.editor > .content .welcomePage .windows-only,
.monaco-workbench > .part.editor > .content .welcomePage .linux-only {
display: none;
}
.monaco-workbench.mac > .part.editor > .content .welcomePage .mac-only {
display: initial;
}
.monaco-workbench.windows > .part.editor > .content .welcomePage .windows-only {
display: initial;
}
.monaco-workbench.linux > .part.editor > .content .welcomePage .linux-only {
display: initial;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ <h1>Visual Studio Code</h1>
<div class="section start">
<h2>Start</h2>
<ul>
<li><a href="command:workbench.action.files.openFileFolder">Open folder...</a></li>
<li class="mac-only"><a href="command:workbench.action.files.openFileFolder">Open folder...</a></li>
<li class="windows-only linux-only"><a href="command:workbench.action.files.openFolder">Open folder...</a></li>
<li><a href="command:workbench.action.git.clone">Clone Git repository...</a></li>
</ul>
</div>
Expand Down

0 comments on commit a9777e8

Please sign in to comment.