Skip to content

Commit f6ba693

Browse files
committed
Fix file prompt on marine report macro with write to csv
1 parent afed8a1 commit f6ba693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/runtime/macros/MEwave/ME Wave Report Export Table.lk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ final_table = [[]];
772772
final_table[0] = csv_table_rows;
773773
final_table[1] = csv_table_units;
774774
final_table[2] = csv_table_results;
775-
fn = choose_file('','Save file as', 'CSV Files(*.csv)|*.csv');
775+
fn = choose_file('','Save file as', 'CSV Files(*.csv)|*.csv', true);
776776
csvwrite(fn, final_table);
777777

778778
reportCode =

0 commit comments

Comments
 (0)