No title in Custom Open Dialog

I set up a custom open dialog in a Xojo 2013 r3.3 Desktop app on Mac OS 10.12.2 using the following code example:

[code]Dim dlg As New OpenDialog
dlg.InitialDirectory = SpecialFolder.Documents

dlg.Title = “Select a MIF file”
dlg.Filter = FileTypes1.pdf

Dim f As FolderItem
f = dlg.ShowModal
If f <> Nil Then
’ Proceed normally
Else
’ User Cancelled
End If[/code]

The dialog box works correctly but there is no title and the navigation bar on the left side of most finder windows is not there either. I’m guessing there should be a title if there is a parameter for that. Did I miss something?

Please read the LR.

as to the rest… works just fine for me

This is a deep-rooted issue in OSX. If you restart you’ll see it has magically fixed itself.

OK. Thanks. I will try that and see.

[quote=311871:@Dave S]The string that appears in the Title bar. This property is ignored on Macintosh.
[/quote]
I was wondering… thanks.