Fix Scaling on Objective Dialogs (#8646)
This commit is contained in:
@@ -98,7 +98,7 @@ public class MapObjectivesDialog extends BaseDialog{
|
|||||||
setInterpreter(UnlockableContent.class, (cont, name, type, field, remover, indexer, get, set) -> {
|
setInterpreter(UnlockableContent.class, (cont, name, type, field, remover, indexer, get, set) -> {
|
||||||
name(cont, name, remover, indexer);
|
name(cont, name, remover, indexer);
|
||||||
cont.table(t -> t.left().button(
|
cont.table(t -> t.left().button(
|
||||||
b -> b.image().size(iconSmall).update(i -> i.setDrawable(get.get().uiIcon)),
|
b -> b.image().size(iconSmall).scaling(Scaling.fit).update(i -> i.setDrawable(get.get().uiIcon)),
|
||||||
() -> showContentSelect(null, set, b -> (field != null && !field.isAnnotationPresent(Researchable.class)) || b.techNode != null)
|
() -> showContentSelect(null, set, b -> (field != null && !field.isAnnotationPresent(Researchable.class)) || b.techNode != null)
|
||||||
).fill().pad(4)).growX().fillY();
|
).fill().pad(4)).growX().fillY();
|
||||||
});
|
});
|
||||||
@@ -505,7 +505,7 @@ public class MapObjectivesDialog extends BaseDialog{
|
|||||||
content.getBy(type).<UnlockableContent>as()
|
content.getBy(type).<UnlockableContent>as()
|
||||||
)){
|
)){
|
||||||
if(content.isHidden() || !check.get((T)content)) continue;
|
if(content.isHidden() || !check.get((T)content)) continue;
|
||||||
t.image(content == Blocks.air ? Icon.none.getRegion() : content.uiIcon).size(iconMed).pad(3)
|
t.image(content == Blocks.air ? Icon.none.getRegion() : content.uiIcon).size(iconMed).pad(3).scaling(Scaling.fit)
|
||||||
.with(b -> b.addListener(new HandCursorListener()))
|
.with(b -> b.addListener(new HandCursorListener()))
|
||||||
.tooltip(content.localizedName).get().clicked(() -> {
|
.tooltip(content.localizedName).get().clicked(() -> {
|
||||||
cons.get((T)content);
|
cons.get((T)content);
|
||||||
|
|||||||
Reference in New Issue
Block a user