]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/gui/guiPasswordChange.cpp
Remove NextItem
[dragonfireclient.git] / src / gui / guiPasswordChange.cpp
index 965a2d6f75a418a7fada73511830076d1595c7f7..74cd62f5b37f5f6b34a24994502277944a726108 100644 (file)
@@ -79,7 +79,11 @@ void GUIPasswordChange::regenerateGui(v2u32 screensize)
        /*
                Calculate new sizes and positions
        */
+#ifdef __ANDROID__
+       const float s = m_gui_scale * porting::getDisplayDensity() / 2;
+#else
        const float s = m_gui_scale;
+#endif
        DesiredRect = core::rect<s32>(
                screensize.X / 2 - 580 * s / 2,
                screensize.Y / 2 - 300 * s / 2,
@@ -236,7 +240,7 @@ bool GUIPasswordChange::OnEvent(const SEvent &event)
                if (event.GUIEvent.EventType == gui::EGET_ELEMENT_FOCUS_LOST &&
                                isVisible()) {
                        if (!canTakeFocus(event.GUIEvent.Element)) {
-                               dstream << "GUIPasswordChange: Not allowing focus change."
+                               infostream << "GUIPasswordChange: Not allowing focus change."
                                        << std::endl;
                                // Returning true disables focus change
                                return true;
@@ -289,6 +293,10 @@ bool GUIPasswordChange::getAndroidUIInput()
        if (!hasAndroidUIInput())
                return false;
 
+       // still waiting
+       if (porting::getInputDialogState() == -1)
+               return true;
+
        gui::IGUIElement *e = nullptr;
        if (m_jni_field_name == "old_password")
                e = getElementFromId(ID_oldPassword);
@@ -296,12 +304,13 @@ bool GUIPasswordChange::getAndroidUIInput()
                e = getElementFromId(ID_newPassword1);
        else if (m_jni_field_name == "new_password_2")
                e = getElementFromId(ID_newPassword2);
-
-       if (e) {
-               std::string text = porting::getInputDialogValue();
-               e->setText(utf8_to_wide(text).c_str());
-       }
        m_jni_field_name.clear();
+
+       if (!e || e->getType() != irr::gui::EGUIET_EDIT_BOX)
+               return false;
+
+       std::string text = porting::getInputDialogValue();
+       e->setText(utf8_to_wide(text).c_str());
        return false;
 }
 #endif