mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-10 23:28:52 +07:00
Overlapping icon button casings will bother me no more
This commit is contained in:
parent
8aa8de570f
commit
aeb28f67e4
@ -278,15 +278,12 @@ public class MapEditorDialog extends Dialog implements Disposable{
|
||||
}).left().margin(0).get();
|
||||
|
||||
button.clearChildren();
|
||||
button.table("button", t -> {
|
||||
t.addImage(iconname).size(16 * 3);
|
||||
t.update(() -> t.background(button.getClickListener().isPressed() ? "button-down" : button.getClickListener().isOver() ? "button-over" : "button"));
|
||||
}).size(h);
|
||||
button.addImage(iconname).size(16 * 3).padLeft(10);
|
||||
button.table(t -> {
|
||||
t.add(name).growX().wrap();
|
||||
t.row();
|
||||
t.add(description).color(Color.GRAY).growX().wrap();
|
||||
}).growX().pad(10f);
|
||||
}).growX().pad(10f).padLeft(5);
|
||||
|
||||
button.row();
|
||||
|
||||
|
@ -12,21 +12,15 @@ public class MenuButton extends TextButton{
|
||||
|
||||
public MenuButton(String icon, String text, String description, Runnable clicked){
|
||||
super("default");
|
||||
float s = 66f;
|
||||
|
||||
clicked(clicked);
|
||||
|
||||
clearChildren();
|
||||
|
||||
margin(0);
|
||||
|
||||
table(t -> {
|
||||
t.addImage(icon).size(14 * 3);
|
||||
t.update(() -> t.setBackground(getClickListener().isVisualPressed() ? "button-down" : getClickListener().isOver() ? "button-over" : "button"));
|
||||
}).size(s - 5, s);
|
||||
t.addImage(icon).size(14 * 3).padLeft(6);
|
||||
|
||||
|
||||
table(t -> {
|
||||
t.add(text).wrap().growX().get().setAlignment(Align.center, Align.left);
|
||||
if(description != null){
|
||||
t.row();
|
||||
|
Loading…
Reference in New Issue
Block a user