Skip to content

Commit

Permalink
Minor fix from Fabric version related to TextFieldWidgets
Browse files Browse the repository at this point in the history
  • Loading branch information
brentmaas committed Jul 31, 2021
1 parent e15583b commit de0791c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ protected void init() {
p.addToBuildGuideScreen(this);
}
for(Shape s: BuildGuide.state.shapeStore) {
s.onDeselectedInGUI();
for(Property<?> p: s.properties) {
if(p.mightNeedTextFields()) p.addTextFields(font);
p.addToBuildGuideScreen(this);
}
s.onDeselectedInGUI(); //TODO: Test?
}

State.getCurrentShape().onSelectedInGUI();
Expand Down

0 comments on commit de0791c

Please sign in to comment.