Skip to content

Commit

Permalink
GUI: I am drunk!
Browse files Browse the repository at this point in the history
  • Loading branch information
tildearrow committed Sep 7, 2023
1 parent a3cd0fa commit a070988
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/fileDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ void FurnaceGUIFileDialog::convertFilterList(std::vector<String>& filter) {

if (filter[i+1]=="*") {
ext=".*";
} else for (char i: filter[i+1]) {
switch (i) {
} else for (char j: filter[i+1]) {
switch (j) {
case '*':
break;
case ' ':
ext+=',';
break;
default:
ext+=i;
ext+=j;
break;
}
}
Expand Down

0 comments on commit a070988

Please sign in to comment.