mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
Fixing other places for auto-mashing
This commit is contained in:
parent
629a38aff7
commit
7c580aa109
3 changed files with 3 additions and 3 deletions
|
|
@ -178,7 +178,7 @@ class Desktop_Message
|
|||
end
|
||||
|
||||
if visible
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
|
||||
terminate_message
|
||||
@fade_out = true
|
||||
end
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ class Doc_Message
|
|||
end
|
||||
|
||||
if visible
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
|
||||
terminate_message
|
||||
@fade_out = true
|
||||
end
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ class Ed_Message
|
|||
end
|
||||
|
||||
if visible
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL)
|
||||
if Input.trigger?(Input::ACTION) || Input.trigger?(Input::CANCEL) || Input.press?(Input::R)
|
||||
terminate_message
|
||||
@fade_out_text = true
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue