Do not loop indefinitely when searching for the next focus widget.
[GB.QT4] * BUG: Do not loop indefinitely when searching for the next focus widget. [GB.QT5] * BUG: Do not loop indefinitely when searching for the next focus widget.
This commit is contained in:
parent
c8ecbefa7f
commit
102040eb8b
@ -2916,7 +2916,7 @@ void MyMainWindow::activate(void)
|
||||
|
||||
bool MyMainWindow::focusNextPrevChild(bool next)
|
||||
{
|
||||
void *current;
|
||||
void *current, *initial;
|
||||
QWidget *w;
|
||||
|
||||
current = CWidget::getRealExisting(focusWidget());
|
||||
@ -2925,10 +2925,12 @@ bool MyMainWindow::focusNextPrevChild(bool next)
|
||||
|
||||
//uint focus_flag = QGuiApplication::styleHints()->tabFocusBehavior() == Qt::TabFocusAllControls ? Qt::TabFocus : Qt::StrongFocus;
|
||||
|
||||
initial = current;
|
||||
|
||||
for(;;)
|
||||
{
|
||||
current = next ? CWIDGET_get_next_focus(current) : CWIDGET_get_previous_focus(current);
|
||||
if (!current)
|
||||
if (!current || current == initial)
|
||||
return QWidget::focusNextPrevChild(next);
|
||||
|
||||
w = QWIDGET(current);
|
||||
|
Loading…
x
Reference in New Issue
Block a user