Skip to content

Commit

Permalink
Quick Fix: New LaTeX file names now keep their capitalisation.
Browse files Browse the repository at this point in the history
  • Loading branch information
HannahSchellekens committed Feb 14, 2017
1 parent 2e5b02e commit 00186ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nl/rubensten/texifyidea/action/NewLatexFileAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private String getNewFileName(@NotNull String fileName, FileType fileType) {
return smallFileName;
}

return TexifyUtil.appendExtension(smallFileName, fileType.getDefaultExtension());
return TexifyUtil.appendExtension(fileName, fileType.getDefaultExtension());
}

@Nullable
Expand Down

0 comments on commit 00186ce

Please sign in to comment.