From e939153b6ac7b59e4de05a4a047e73ec2c140cc0 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 15 Jun 2006 12:04:22 +0000 Subject: Fixed regression with the override checkboxes in the "Edit game" dialog. The checkbox's command message was being intercepted by the tab widget. svn-id: r23126 --- gui/TabWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/TabWidget.cpp b/gui/TabWidget.cpp index 6879325e63..af68b252fb 100644 --- a/gui/TabWidget.cpp +++ b/gui/TabWidget.cpp @@ -126,6 +126,8 @@ void TabWidget::setActiveTab(int tabID) { void TabWidget::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) { + Widget::handleCommand(sender, cmd, data); + switch (cmd) { case kCmdLeft: if (_firstVisibleTab) { -- cgit v1.2.3