Version: 1.6 RC1 (using KDE KDE 3.5.4) Installed from: Gentoo Packages Compiler: gcc 3.4.6 Gentoo 3.4.6-r1, ssp-3.4.5-1.0, pie-8.7.9 OS: Linux If you open a query first in data view (the default) then change to SQL mode, the query designer seems confused about which actions should be enabled. If you click on the SQL text box the Check Query and SQL History actions are enabled, but if you drop down the Data menu the Check Query action disables as the menu appears and then enables when the menu is closing.
Confirmed. We have the same problem as with Save/Cancel actions on forms.
SVN commit 592115 by staniek: Core - fixed bug #134977: enabling/disabling of actions in query editor 2.0: merged CCMAIL:134977-done@bugs.kde.org M +2 -1 kexidialogbase.cpp --- branches/koffice/1.6/koffice/kexi/core/kexidialogbase.cpp #592114:592115 @@ -35,6 +35,7 @@ #include <qwidgetstack.h> #include <qobjectlist.h> +#include <qtimer.h> #include <kdebug.h> #include <kapplication.h> @@ -370,7 +371,7 @@ m_stack->raiseWidget( newView ); newView->propertySetSwitched(); m_parentWindow->invalidateSharedActions( newView ); - newView->setFocus(); //js ok? + QTimer::singleShot(10, newView, SLOT(activate())); //newView->setFocus(); //js ok? // setFocus(); return true; }
You need to log in before you can comment on or make changes to this bug.