mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 07:20:46 +00:00
Fix bug not returning to default selection mode from subtraction after releasing Alt+Shift
This commit is contained in:
parent
53683579b8
commit
d9604d9905
@ -1152,8 +1152,8 @@ bool Editor::onProcessMessage(Message* msg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case kMouseEnterMessage:
|
case kMouseEnterMessage:
|
||||||
updateQuicktool();
|
|
||||||
updateToolLoopModifiersIndicators();
|
updateToolLoopModifiersIndicators();
|
||||||
|
updateQuicktool();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case kMouseLeaveMessage:
|
case kMouseLeaveMessage:
|
||||||
@ -1171,8 +1171,8 @@ bool Editor::onProcessMessage(Message* msg)
|
|||||||
if (!m_secondaryButton && mouseMsg->right()) {
|
if (!m_secondaryButton && mouseMsg->right()) {
|
||||||
m_secondaryButton = mouseMsg->right();
|
m_secondaryButton = mouseMsg->right();
|
||||||
|
|
||||||
updateQuicktool();
|
|
||||||
updateToolLoopModifiersIndicators();
|
updateToolLoopModifiersIndicators();
|
||||||
|
updateQuicktool();
|
||||||
setCursor(mouseMsg->position());
|
setCursor(mouseMsg->position());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1207,8 +1207,8 @@ bool Editor::onProcessMessage(Message* msg)
|
|||||||
App::instance()->activeToolManager()->releaseButtons();
|
App::instance()->activeToolManager()->releaseButtons();
|
||||||
m_secondaryButton = false;
|
m_secondaryButton = false;
|
||||||
|
|
||||||
updateQuicktool();
|
|
||||||
updateToolLoopModifiersIndicators();
|
updateToolLoopModifiersIndicators();
|
||||||
|
updateQuicktool();
|
||||||
setCursor(mouseMsg->position());
|
setCursor(mouseMsg->position());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1242,11 +1242,11 @@ bool Editor::onProcessMessage(Message* msg)
|
|||||||
EditorStatePtr holdState(m_state);
|
EditorStatePtr holdState(m_state);
|
||||||
bool used = m_state->onKeyDown(this, static_cast<KeyMessage*>(msg));
|
bool used = m_state->onKeyDown(this, static_cast<KeyMessage*>(msg));
|
||||||
|
|
||||||
|
updateToolLoopModifiersIndicators();
|
||||||
if (hasMouse()) {
|
if (hasMouse()) {
|
||||||
updateQuicktool();
|
updateQuicktool();
|
||||||
setCursor(ui::get_mouse_position());
|
setCursor(ui::get_mouse_position());
|
||||||
}
|
}
|
||||||
updateToolLoopModifiersIndicators();
|
|
||||||
|
|
||||||
if (used)
|
if (used)
|
||||||
return true;
|
return true;
|
||||||
@ -1258,11 +1258,11 @@ bool Editor::onProcessMessage(Message* msg)
|
|||||||
EditorStatePtr holdState(m_state);
|
EditorStatePtr holdState(m_state);
|
||||||
bool used = m_state->onKeyUp(this, static_cast<KeyMessage*>(msg));
|
bool used = m_state->onKeyUp(this, static_cast<KeyMessage*>(msg));
|
||||||
|
|
||||||
|
updateToolLoopModifiersIndicators();
|
||||||
if (hasMouse()) {
|
if (hasMouse()) {
|
||||||
updateQuicktool();
|
updateQuicktool();
|
||||||
setCursor(ui::get_mouse_position());
|
setCursor(ui::get_mouse_position());
|
||||||
}
|
}
|
||||||
updateToolLoopModifiersIndicators();
|
|
||||||
|
|
||||||
if (used)
|
if (used)
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user