Update to 13.4

This commit is contained in:
dP
2023-07-31 19:33:16 +04:00
parent 9be99d15c3
commit 79037e2c65
48 changed files with 687 additions and 252 deletions

View File

@@ -202,10 +202,10 @@ struct OskWindow : public Window {
this->parent->SetWidgetDirty(this->text_btn);
}
void OnFocusLost() override
void OnFocusLost(bool closing) override
{
VideoDriver::GetInstance()->EditBoxLostFocus();
this->Close();
if (!closing) this->Close();
}
};