You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This does not work on the Mac in the example above because the file type sqliteand dbare not registered file types. However, they do exist and the files should be available for opening.
Correct the oversight by changed, in oscomwin.m, function i_set_ftypes:
change the line UTType *type = [UTType typeWithIdentifier:ext];
to UTType *type = [UTType typeWithFilenameExtension:ext];
This will allow any file with the indicated extensions to be opened, not only registered ones.
The text was updated successfully, but these errors were encountered:
A subtle bug in the Mac version... in the call to open a file one may include file types, like in
This does not work on the Mac in the example above because the file type
sqlite
anddb
are not registered file types. However, they do exist and the files should be available for opening.Correct the oversight by changed, in
oscomwin.m
, functioni_set_ftypes
:change the line
UTType *type = [UTType typeWithIdentifier:ext];
to
UTType *type = [UTType typeWithFilenameExtension:ext];
This will allow any file with the indicated extensions to be opened, not only registered ones.
The text was updated successfully, but these errors were encountered: