forked from mia/Aegisub
Whoops, I mis-placed the parentheses in r3458.
Originally committed to SVN as r3468.
This commit is contained in:
parent
46c824442b
commit
4aa6975a8d
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ void IdleFieldHandler::SetFocus() {
|
||||||
///
|
///
|
||||||
void IdleFieldHandler::KillFocus() {
|
void IdleFieldHandler::KillFocus() {
|
||||||
bool modify = false;
|
bool modify = false;
|
||||||
if (text && (text->GetValue().IsEmpty() || box) && box->GetValue().IsEmpty()) modify = true;
|
if ((text && text->GetValue().IsEmpty()) || (box && box->GetValue().IsEmpty())) modify = true;
|
||||||
|
|
||||||
if (modify) {
|
if (modify) {
|
||||||
// Prepare
|
// Prepare
|
||||||
|
|
Loading…
Reference in a new issue