-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Фишки UI #375
Comments
Это точно есть... |
Есть такой вопрос, возможно идиотский: зачем везде сунуть get_current_kx() если можно добавить его в самом начале, в |
Так исторически сложилось как бы. |
Некоторые найденные мной проблемы:
|
Решение: откатить все правки к SetWndSize (Fvector2().set(m_xxxRect.width(),m_xxxRect.height())); На: SetWndSize (Fvector2().set(m_xxxRect.width()*UI()->get_current_kx(),m_xxxRect.height()));
Решение: #352 (comment) |
OGSR-Engine/ogsr_engine/xrGame/ui_base.cpp Line 269 in 7ab5bb7
Тут явно забыли добавить |
Не знаю зачем тут два OGSR-Engine/ogsr_engine/xrGame/ui/UIMap.h Lines 25 to 26 in 4c6a8bc
Но для исправление вышеописанной проблемы удалить первый
OGSR-Engine/ogsr_engine/xrGame/ui/UIMap.cpp Line 193 in 4c6a8bc
Потом вместо:
Написать: m_tgtCenter = m->ConvertRealToLocal(pos, true); |
Добавлю от себя замечание по теме.
Если эту строчку обернуть в условие, то проблемы не будет. if (!Heading()) {
SetWidth(GetWidth() * UI()->get_current_kx() );
} |
Список будет дополняться.
The text was updated successfully, but these errors were encountered: