diff options
author | TheMorc <r.gracik@gmail.com> | 2023-08-24 03:02:06 +0200 |
---|---|---|
committer | TheMorc <r.gracik@gmail.com> | 2023-08-24 08:29:43 +0200 |
commit | 9f9617eb37d29a4a7ffe222814bdebe89c291005 (patch) | |
tree | a3fcee6e41942ad1d2abc4a9062159df025e46b6 /src | |
parent | 0b918a748af6b9e0904db6a67b74e880035cd4a9 (diff) | |
download | abaddon-portaudio-9f9617eb37d29a4a7ffe222814bdebe89c291005.tar.gz abaddon-portaudio-9f9617eb37d29a4a7ffe222814bdebe89c291005.zip |
disable file picker filters
macOS's file picker had issues with them being enabled and it works
just fine without the filter being added. Probably applies to other
file picker interfaces too
Diffstat (limited to 'src')
-rw-r--r-- | src/components/chatinput.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/components/chatinput.cpp b/src/components/chatinput.cpp index 1133302..24fc22b 100644 --- a/src/components/chatinput.cpp +++ b/src/components/chatinput.cpp @@ -149,11 +149,6 @@ void ChatInputTextContainer::ShowFileChooser() { } }); - auto filter_all = Gtk::FileFilter::create(); - filter_all->set_name("All files (*.*)"); - filter_all->add_pattern("*.*"); - dlg->add_filter(filter_all); - dlg->run(); } |