Hello,
before :
Bitte melden Sie sich an, um diesen Anhang zu sehen.
after :
Bitte melden Sie sich an, um diesen Anhang zu sehen.
Code: BinarySrc/EterPythonLib/PythonWindowManager.cpp
- Search :
- pWin->SetPosition(x, y);
- pWin->OnMoveWindow(x, y);
- add above :
- if (x + pWin->GetWidth() > UI::CWindowManager::Instance().GetScreenWidth())
- {
- x = UI::CWindowManager::Instance().GetScreenWidth() - pWin->GetWidth();
- }
- else if (x < 0)
- {
- x = 0;
- }
- if (y + pWin->GetHeight() > UI::CWindowManager::Instance().GetScreenHeight())
- {
- y = UI::CWindowManager::Instance().GetScreenHeight() - pWin->GetHeight();
- }
- else if (y < 0)
- {
- y = 0;
- }
Have fun