Fix Scaling on Objective Dialogs (#8646)

This commit is contained in:
[Error_27] 2023-05-27 16:26:24 -04:00 committed by GitHub
parent ab95b88c05
commit fc0f48e13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ public class MapObjectivesDialog extends BaseDialog{
setInterpreter(UnlockableContent.class, (cont, name, type, field, remover, indexer, get, set) -> {
name(cont, name, remover, indexer);
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)
).fill().pad(4)).growX().fillY();
});
@ -505,7 +505,7 @@ public class MapObjectivesDialog extends BaseDialog{
content.getBy(type).<UnlockableContent>as()
)){
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()))
.tooltip(content.localizedName).get().clicked(() -> {
cons.get((T)content);