label: Fix focus implementation

Don't return TRUE if we didn't actually focus anything.
This commit is contained in:
Timm Bäder 2017-02-08 15:40:06 +01:00
parent 1affd425a1
commit 0b48bb23b2

View File

@ -4735,11 +4735,13 @@ gtk_label_focus (GtkWidget *widget,
}
}
}
}
return TRUE;
}
return FALSE;
}
if (!info)
return FALSE;