Skip to content

Commit

Permalink
MythUIType focus orderof -1 means can not have focus
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonEleventeen committed Mar 1, 2012
1 parent 919782a commit 942a5a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuitype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ bool MythUIType::ParseElement(
{
int order = getFirstText(element).toInt();
SetFocusOrder(order);
if(order < 1)
if(order < 0)
SetCanTakeFocus(false)
}
else if (element.tagName() == "loadondemand")
Expand Down

0 comments on commit 942a5a4

Please sign in to comment.