Improve edit screen

This commit is contained in:
asraelite 2018-03-05 22:29:35 +00:00
parent 52770d7eb2
commit 826986cdbf
12 changed files with 235 additions and 40 deletions

View file

@ -10,7 +10,7 @@ export default class GuiButton extends GuiElement {
}
click() {
if (this.options.draw)
if (this.options.draw && !this.options.disabled)
this.onclick();
}
}