Skip to content

Commit

Permalink
Also wrap windows paths in the logger of the launcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Dec 4, 2024
1 parent 8f27495 commit 70516db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/mastodon/mamut/launcher/LauncherGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public void insertString( final FilterBypass fb, final int offset, final String
final StringBuilder modifiedText = new StringBuilder();
for ( final char c : string.toCharArray() )
{
if ( c == '/' )
if ( c == '/' || c == '\\' )
{
modifiedText.append( c ).append( ' ' );
}
Expand Down

0 comments on commit 70516db

Please sign in to comment.