Now opens the types window on B_SILENT_RELAUNCH if it's not already open.

This fixes bug #1628.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22957 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-11-19 15:30:32 +00:00
parent e551be6e70
commit d46836a8b0

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Copyright 2006-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
*/ */
@ -372,6 +372,13 @@ FileTypes::MessageReceived(BMessage *message)
break; break;
} }
case B_SILENT_RELAUNCH:
// In case we were launched via the add-on, there is no types
// window yet.
if (fTypesWindow == NULL)
PostMessage(kMsgOpenTypesWindow);
break;
case B_CANCEL: case B_CANCEL:
if (fWindowCount == 0) if (fWindowCount == 0)
PostMessage(B_QUIT_REQUESTED); PostMessage(B_QUIT_REQUESTED);
@ -393,7 +400,7 @@ FileTypes::AboutRequested()
{ {
BAlert *alert = new BAlert("about", "FileTypes\n" BAlert *alert = new BAlert("about", "FileTypes\n"
"\twritten by Axel Dörfler\n" "\twritten by Axel Dörfler\n"
"\tCopyright 2006, Haiku.\n", "Ok"); "\tCopyright 2006-2007, Haiku.\n", "Ok");
BTextView *view = alert->TextView(); BTextView *view = alert->TextView();
BFont font; BFont font;