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
This commit is contained in:
TheMorc
2023-08-24 03:02:06 +02:00
parent 0b918a748a
commit 9f9617eb37

View File

@@ -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();
}