[window] Fix issue where the setup window title isn't added to the Windows list

This commit is contained in:
Hylke Bons 2011-02-14 00:17:49 +00:00
parent 04527a6827
commit 8c0c5f90e5

View file

@ -90,7 +90,7 @@ namespace SparkleShare {
NSApplication.SharedApplication.ActivateIgnoringOtherApps (true);
MakeKeyAndOrderFront (this);
NSApplication.SharedApplication.AddWindowsItem (this, "SparkleShare Setup", false);
OrderFrontRegardless ();
}
@ -143,8 +143,17 @@ namespace SparkleShare {
}
}
public override void OrderFrontRegardless ()
{
NSApplication.SharedApplication.AddWindowsItem (this, "SparkleShare Setup", false);
base.OrderFrontRegardless ();
}
public override void Close ()
{