v0.4.3: improved changes scene
This commit is contained in:
parent
42abbd1002
commit
4f864db014
|
@ -122,15 +122,15 @@ public class ChangesScene extends PixelScene {
|
||||||
|
|
||||||
RenderedTextMultiline text = renderMultiline(TXT_Update, 6 );
|
RenderedTextMultiline text = renderMultiline(TXT_Update, 6 );
|
||||||
|
|
||||||
|
NinePatch panel = Chrome.get(Chrome.Type.TOAST);
|
||||||
|
|
||||||
int pw = w - 6;
|
int pw = 135 + panel.marginLeft() + panel.marginRight() - 2;
|
||||||
int ph = h - 20;
|
int ph = h - 16;
|
||||||
|
|
||||||
|
|
||||||
NinePatch panel = Chrome.get(Chrome.Type.WINDOW);
|
|
||||||
panel.size( pw, ph );
|
panel.size( pw, ph );
|
||||||
panel.x = (w - pw) / 2;
|
panel.x = (w - pw) / 2f;
|
||||||
panel.y = title.y + title.height() + 2;
|
panel.y = title.y + title.height();
|
||||||
|
align( panel );
|
||||||
add( panel );
|
add( panel );
|
||||||
|
|
||||||
ScrollPane list = new ScrollPane( new Component() );
|
ScrollPane list = new ScrollPane( new Component() );
|
||||||
|
@ -143,13 +143,13 @@ public class ChangesScene extends PixelScene {
|
||||||
|
|
||||||
content.add(text);
|
content.add(text);
|
||||||
|
|
||||||
content.setSize( panel.innerWidth(), text.height() );
|
content.setSize( panel.innerWidth(), (int)Math.ceil(text.height()) );
|
||||||
|
|
||||||
list.setRect(
|
list.setRect(
|
||||||
panel.x + panel.marginLeft(),
|
panel.x + panel.marginLeft(),
|
||||||
panel.y + panel.marginTop(),
|
panel.y + panel.marginTop() - 1,
|
||||||
panel.innerWidth(),
|
panel.innerWidth(),
|
||||||
panel.innerHeight());
|
panel.innerHeight() + 2);
|
||||||
list.scrollTo(0, 0);
|
list.scrollTo(0, 0);
|
||||||
|
|
||||||
Archs archs = new Archs();
|
Archs archs = new Archs();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user