mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
parent
277a377eb2
commit
5c7b23eefb
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ void CHyprlock::onKey(uint32_t key) {
|
||||||
if (SYM == XKB_KEY_BackSpace) {
|
if (SYM == XKB_KEY_BackSpace) {
|
||||||
if (m_sPasswordState.passBuffer.length() > 0)
|
if (m_sPasswordState.passBuffer.length() > 0)
|
||||||
m_sPasswordState.passBuffer = m_sPasswordState.passBuffer.substr(0, m_sPasswordState.passBuffer.length() - 1);
|
m_sPasswordState.passBuffer = m_sPasswordState.passBuffer.substr(0, m_sPasswordState.passBuffer.length() - 1);
|
||||||
} else if (SYM == XKB_KEY_Return) {
|
} else if (SYM == XKB_KEY_Return || SYM == XKB_KEY_KP_Enter) {
|
||||||
Debug::log(LOG, "Authenticating");
|
Debug::log(LOG, "Authenticating");
|
||||||
|
|
||||||
m_sPasswordState.result = g_pPassword->verify(m_sPasswordState.passBuffer);
|
m_sPasswordState.result = g_pPassword->verify(m_sPasswordState.passBuffer);
|
||||||
|
|
Loading…
Reference in a new issue