From bbab136f783459ecf9181acf458dca3aedf2c113 Mon Sep 17 00:00:00 2001 From: Jaidyn Lev Date: Sun, 7 Oct 2018 03:26:47 -0500 Subject: [PATCH] Fixed Source.txt column-width --- resources/library/insert-coin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/library/insert-coin.php b/resources/library/insert-coin.php index a457495..e9fdb35 100644 --- a/resources/library/insert-coin.php +++ b/resources/library/insert-coin.php @@ -30,8 +30,8 @@ function write_metadata($filepath, $source) $file_p = fopen($filepath . ".txt", 'w'); $source_string = "Source:\n" - . prefix_text(set_line_length($source, 60), - " "); + . prefix_text(set_line_length($source, 50), + " "); fwrite($file_p, $source_string); fclose($file_p);