Skip to content

Commit

Permalink
disable file picker filters
Browse files Browse the repository at this point in the history
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
  • Loading branch information
TheMorc committed Aug 24, 2023
1 parent 0b918a7 commit 9f9617e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/components/chatinput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 9f9617e

Please sign in to comment.