Oops, let's compare instead of assign.

This commit is contained in:
casey langen 2019-03-06 19:13:54 -08:00
parent a1bb0f1de3
commit a9fdbcf07e

View File

@ -819,7 +819,7 @@ void Window::Focus() {
}
void Window::Blur() {
if (::focused = this) {
if (::focused == this) {
::focused = nullptr;
this->isDirty = true;
this->OnFocusChanged(false);