Fix wizard crash on OS X

Disable showing the wizard before the main window on OS X.
pull/2/head
Stelios Bounanos 2010-01-28 04:05:09 +00:00
rodzic be9dc0a3b6
commit 3bbb6ea234
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -173,7 +173,13 @@ double speed_test(int converter, unsigned repeat);
static void setup_signal_handlers(void);
static void checkdirectories(void);
#define SHOW_WIZARD_BEFORE_MAIN_WINDOW 1
// TODO: find out why fldigi crashes on OS X if the wizard window is
// shown before fldigi_main.
#ifndef __APPLE__
# define SHOW_WIZARD_BEFORE_MAIN_WINDOW 1
#else
# define SHOW_WIZARD_BEFORE_MAIN_WINDOW 0
#endif
int main(int argc, char ** argv)
{