Merge pull request #75 from ebolam/united
Fixed retry bug due to redo/pin code
This commit is contained in:
commit
c1af8f72c3
|
@ -2606,11 +2606,11 @@ def actionretry(data):
|
||||||
if(vars.gamestarted if vars.useprompt else len(vars.actions) > 0):
|
if(vars.gamestarted if vars.useprompt else len(vars.actions) > 0):
|
||||||
if(not vars.recentback and len(vars.actions) != 0 and len(vars.genseqs) == 0): # Don't pop if we're in the "Select sequence to keep" menu or if there are no non-prompt actions
|
if(not vars.recentback and len(vars.actions) != 0 and len(vars.genseqs) == 0): # Don't pop if we're in the "Select sequence to keep" menu or if there are no non-prompt actions
|
||||||
# We are going to move the selected text to alternative text in the actions_metadata variable so we can redo this action
|
# We are going to move the selected text to alternative text in the actions_metadata variable so we can redo this action
|
||||||
vars.actions_metadata[vars.actions]['Alternative Text'] = [{'Text': vars.actions_metadata[len(vars.actions)]['Selected Text'],
|
vars.actions_metadata[len(vars.actions)-1]['Alternative Text'] = [{'Text': vars.actions_metadata[len(vars.actions)-1]['Selected Text'],
|
||||||
'Pinned': False,
|
'Pinned': False,
|
||||||
"Previous Selection": True,
|
"Previous Selection": True,
|
||||||
"Edited": False}] + vars.actions_metadata[vars.actions]['Alternative Text']
|
"Edited": False}] + vars.actions_metadata[len(vars.actions)-1]['Alternative Text']
|
||||||
vars.actions_metadata[vars.actions]['Selected Text'] = ""
|
vars.actions_metadata[len(vars.actions)-1]['Selected Text'] = ""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="8" height="8" data-icon="pin" viewBox="0 0 8 8">
|
|
||||||
<path d="M1.344 0a.502.502 0 0 0 .156 1h.5v2h-1c-.55 0-1 .45-1 1h3v3l.438 1 .563-1v-3h3c0-.55-.45-1-1-1h-1v-2h.5a.5.5 0 1 0 0-1h-4a.5.5 0 0 0-.094 0 .502.502 0 0 0-.063 0z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 295 B |
Loading…
Reference in New Issue