summaryrefslogtreecommitdiff
path: root/client/macrowindow.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2011-12-01 09:33:12 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2011-12-01 09:33:12 +0100
commit45336cbecb6eff3317a365f271dc548c297f4ffa (patch)
tree523b507dd9eba7633cc309cbb8cdad83c7502250 /client/macrowindow.cc
parent5d5595b9e1c1c22f7033a262b8174a5f3d05adc8 (diff)
Fix setKeyboardFocus to work recursive on all widgets. Fixes bug where MultiList did not receive keyboard focus when it is the first child in the macro window.
Diffstat (limited to 'client/macrowindow.cc')
-rw-r--r--client/macrowindow.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/macrowindow.cc b/client/macrowindow.cc
index 48ace4e..f924d8c 100644
--- a/client/macrowindow.cc
+++ b/client/macrowindow.cc
@@ -328,6 +328,6 @@ void MacroWindow::animated(QWidget *w)
setTabOrderRecursive(scrollarea);
// Set keyboard focus on the first focusable widget in the macro.
- mainwidget->setKeyboardFocus();
+ mainwidget->setKeyboardFocusRecursive();
}
}