Skip to content

Commit

Permalink
Windows-specific file list bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Win10 authored and Win10 committed Feb 1, 2024
1 parent 8be6d46 commit 0bb4bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified distrib/ChatMate.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion src/com/cubAIx/ChatMate/ChateMateGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@


public class ChateMateGui {
static final public String _VERSION = "0.2.0";
static final public String _VERSION = "0.2.1";

public Display display = null;
public Shell shell = null;
Expand Down Expand Up @@ -512,6 +512,7 @@ public void widgetSelected(SelectionEvent e) {
@Override
public void run() {
for(String aPath : aFileList.split("\n")) {
aPath = aPath.trim();
File aFile = new File(aPath);
if(!aFile.exists()) {
aProcessedSB.append("File not found\n");
Expand Down

0 comments on commit 0bb4bc5

Please sign in to comment.