From 4c4d5d00537dcb272eaded7e86cdd9cfb8f0cb97 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 22 Nov 2019 14:36:25 -0500 Subject: [PATCH] v0.8.0: tweaked the layout for WndOptions slightly --- .../shatteredpixeldungeon/windows/WndOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndOptions.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndOptions.java index f8ccdfd1d..59c206d4d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndOptions.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/windows/WndOptions.java @@ -47,7 +47,7 @@ public class WndOptions extends Window { RenderedTextBlock tfMesage = PixelScene.renderTextBlock( 6 ); tfMesage.text(message, width - MARGIN * 2); - tfMesage.setPos( MARGIN, tfTitle.top() + tfTitle.height() + 2*MARGIN ); + tfMesage.setPos( MARGIN, tfTitle.bottom() + 3*MARGIN ); add( tfMesage ); float pos = tfMesage.bottom() + 2*MARGIN;