Skip to content

Commit

Permalink
Add TODOs for the name label
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron committed Sep 19, 2024
1 parent 1e5a0b9 commit f18baa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ public ModularPanel buildUI(PosGuiData guiData, PanelSyncManager guiSyncManager)
BooleanSyncValue workingStateValue = new BooleanSyncValue(() -> workingEnabled, val -> workingEnabled = val);
guiSyncManager.syncValue("working_state", workingStateValue);

// TODO: Change the position of the name when it's standardized.
return GTGuis.createPanel(this, backgroundWidth, backgroundHeight)
.child(IKey.lang(getMetaFullName()).asWidget().pos(5, 5))
.child(SlotGroupWidget.playerInventory().left(7).bottom(7))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ public ModularPanel buildUI(PosGuiData guiData, PanelSyncManager guiSyncManager)
BooleanSyncValue workingStateValue = new BooleanSyncValue(() -> workingEnabled, val -> workingEnabled = val);
guiSyncManager.syncValue("working_state", workingStateValue);

// TODO: Change the position of the name when it's standardized.
return GTGuis.createPanel(this, backgroundWidth, backgroundHeight)
.child(IKey.lang(getMetaFullName()).asWidget().pos(5, 5))
.child(SlotGroupWidget.playerInventory().left(7).bottom(7))
Expand Down

0 comments on commit f18baa0

Please sign in to comment.