diff options
author | Kevin Smith <git@kismith.co.uk> | 2009-11-28 14:59:57 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2009-11-28 14:59:57 (GMT) |
commit | 84b88630a5acdc2f8ad46161d5eaaf1511cbc8d3 (patch) | |
tree | d7b90601cb8ecc3f3fe2fa67aeeb4e5b7f41c631 /Swift/Controllers/XMLConsoleController.cpp | |
parent | 647213f7c9bdc5b60c863ee56302f380869befe7 (diff) | |
download | swift-84b88630a5acdc2f8ad46161d5eaaf1511cbc8d3.zip swift-84b88630a5acdc2f8ad46161d5eaaf1511cbc8d3.tar.bz2 |
Opening the XMLConsole should bring it to front.
Just plugged in the activate call for the qttabbables.
Resolves: #263
Diffstat (limited to 'Swift/Controllers/XMLConsoleController.cpp')
-rw-r--r-- | Swift/Controllers/XMLConsoleController.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/Controllers/XMLConsoleController.cpp b/Swift/Controllers/XMLConsoleController.cpp index 810e8a6..ebc9912 100644 --- a/Swift/Controllers/XMLConsoleController.cpp +++ b/Swift/Controllers/XMLConsoleController.cpp @@ -19,6 +19,7 @@ void XMLConsoleController::handleUIEvent(boost::shared_ptr<UIEvent> rawEvent) { xmlConsoleWidget_ = xmlConsoleWidgetFactory_->createXMLConsoleWidget(); } xmlConsoleWidget_->show(); + xmlConsoleWidget_->activate(); } } |