diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-02 15:20:55 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-02 15:20:55 +0100 |
| commit | 16dff07994268bf3ab9de29afb410e205b41728c (patch) | |
| tree | b9b66410b53e86f65aed7d143414265a3fbaf0e5 | |
| parent | ddc213d91c28e5f0729a7f397e88104baa7024bc (diff) | |
Fix "Native file chooser on Linux fails with BROWSE_MULTI_FILE" (#669)
| -rw-r--r-- | src/Fl_Native_File_Chooser_Zenity.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Native_File_Chooser_Zenity.cxx b/src/Fl_Native_File_Chooser_Zenity.cxx index 0f7930121..3626d357e 100644 --- a/src/Fl_Native_File_Chooser_Zenity.cxx +++ b/src/Fl_Native_File_Chooser_Zenity.cxx @@ -48,7 +48,7 @@ char *Fl_Zenity_Native_File_Chooser_Driver::build_command() { break; case Fl_Native_File_Chooser::BROWSE_MULTI_FILE: - option = "--file-selection --multiple"; + option = "--file-selection --multiple --separator='\n'"; break; default: |
