allow accessing properties from .back()
All checks were successful
/ Build & Publish (push) Successful in 1m28s
All checks were successful
/ Build & Publish (push) Successful in 1m28s
This commit is contained in:
parent
735b2c45ec
commit
9421410e63
1 changed files with 3 additions and 2 deletions
|
@ -56,13 +56,14 @@ public class ClientBoot {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void back() {
|
public ClientBoot back() {
|
||||||
if(window.options.size() == 1)
|
if(window.options.size() == 1)
|
||||||
return;
|
return this;
|
||||||
window.options.pop();
|
window.options.pop();
|
||||||
window.selected = 0;
|
window.selected = 0;
|
||||||
window.checkSelected(false);
|
window.checkSelected(false);
|
||||||
window.justRanSomething.unlock();
|
window.justRanSomething.unlock();
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void finish() {
|
public void finish() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue