>>>>> "Edwin" == Edwin Leuven <[EMAIL PROTECTED]> writes:
Edwin> returning false disables the toolbar always... It should return true of course. This is what happens when sending patches without testing them. JMarc
Index: src/frontends/qt2/QtView.C =================================================================== --- src/frontends/qt2/QtView.C (revision 13949) +++ src/frontends/qt2/QtView.C (working copy) @@ -149,7 +149,11 @@ void QtView::activated(FuncRequest const bool QtView::hasFocus() const { +#ifdef Q_WS_MACX return qApp->activeWindow() == this; +#else + return true; +#endif }