Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ public HudEditorScreen(GuiTheme theme) {
}

@Override
public void initWidgets() {}
public void initWidgets() {
add(theme.label("Right-click to add new elements!"))
.centerX()
.top()
.marginTop(50);
}

@Override
public boolean mouseClicked(Click click, boolean doubled) {
Expand Down