summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2023-08-25 20:24:56 +0000
committerGitHub <noreply@github.com>2023-08-25 20:24:56 +0000
commiteb62406f9284aafd6523e8a65fd3ff1be4936b5a (patch)
tree5d3d4a6d0da505edc9fe72766a5ea6e5360113a0 /src/components
parentf49c534247430220286787d01a6212579ed528c8 (diff)
parent9f9617eb37d29a4a7ffe222814bdebe89c291005 (diff)
downloadabaddon-portaudio-eb62406f9284aafd6523e8a65fd3ff1be4936b5a.tar.gz
abaddon-portaudio-eb62406f9284aafd6523e8a65fd3ff1be4936b5a.zip
Merge pull request #212 from TheMorc/macosfilepicker
remove useless file picker filter
Diffstat (limited to 'src/components')
-rw-r--r--src/components/chatinput.cpp5
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();
}